By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 3195
Collapse All | Expand All

(-)kdiff3-trinity-14.0.12/src/diff.cpp~ (-1 / +2 lines)
Lines 241-247 Link Here
241
   }
241
   }
242
242
243
   FileAccess f( m_tempInputFileName );
243
   FileAccess f( m_tempInputFileName );
244
   bool bSuccess = f.writeFile( TQTextCodec::codecForName("UTF-8")->fromUnicode(data), data.length() );
244
   TQByteArray wBuf = TQTextCodec::codecForName("UTF-8")->fromUnicode(data);
245
   bool bSuccess = f.writeFile( wBuf, wBuf.size()-1 );
245
   if ( !bSuccess )
246
   if ( !bSuccess )
246
   {
247
   {
247
      KMessageBox::error( m_pOptionDialog, i18n("Writing clipboard data to temp file failed.") );
248
      KMessageBox::error( m_pOptionDialog, i18n("Writing clipboard data to temp file failed.") );

Return to bug 3195