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 2625
Collapse All | Expand All

(-)b/kaddressbook/thumbnailcreator/ldifvcardcreator.cpp (-1 / +3 lines)
Lines 80-86 Link Here
80
  const TQString contents( data );
80
  const TQString contents( data );
81
  const TQCString contentsRaw( data.data(), data.size() );
81
  const TQCString contentsRaw( data.data(), data.size() );
82
#else
82
#else
83
  TQString contents = file.readAll();
83
  TQTextStream s( &file );
84
  s.setEncoding( TQTextStream::UnicodeUTF8 );
85
  TQString contents = s.read();
84
#endif
86
#endif
85
  file.close();
87
  file.close();
86
88

Return to bug 2625