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

(-)ark/arch.cpp~ (-3 / +7 lines)
Lines 33-38 Link Here
33
// QT includes
33
// QT includes
34
#include <tqapplication.h>
34
#include <tqapplication.h>
35
#include <tqfile.h>
35
#include <tqfile.h>
36
#include <tqtextcodec.h>
36
37
37
// KDE includes
38
// KDE includes
38
#include <kdebug.h>
39
#include <kdebug.h>
Lines 288-294 Link Here
288
290
289
    data[ lfChar ] = '\0';
291
    data[ lfChar ] = '\0';
290
292
291
    m_buffer.append( TQString::fromUtf8(data + startChar).latin1() );
293
    m_buffer.append( data + startChar );
292
294
293
    data[ lfChar ] = '\n';
295
    data[ lfChar ] = '\n';
294
    startChar = lfChar + 1;
296
    startChar = lfChar + 1;
Lines 333-344 Link Here
333
  unsigned int pos = 0;
335
  unsigned int pos = 0;
334
  int strpos, len;
336
  int strpos, len;
335
337
338
  TQTextCodec *codec = TQTextCodec::codecForLocale();
339
  TQString tqunicode_line = codec->toUnicode( line );
340
336
  // Go through our columns, try to pick out data, return silently on failure
341
  // Go through our columns, try to pick out data, return silently on failure
337
  for ( TQPtrListIterator <ArchColumns>col( m_archCols ); col.current(); ++col )
342
  for ( TQPtrListIterator <ArchColumns>col( m_archCols ); col.current(); ++col )
338
  {
343
  {
339
    ArchColumns *curCol = *col;
344
    ArchColumns *curCol = *col;
340
345
341
    strpos = curCol->pattern.search( line, pos );
346
    strpos = curCol->pattern.search( tqunicode_line, pos );
342
    len = curCol->pattern.matchedLength();
347
    len = curCol->pattern.matchedLength();
343
348
344
    if ( ( strpos == -1 ) || ( len > curCol->maxLength ) )
349
    if ( ( strpos == -1 ) || ( len > curCol->maxLength ) )
Lines 354-360 Link Here
354
359
355
    pos = strpos + len;
360
    pos = strpos + len;
356
361
357
    columns[curCol->colRef] = TQString::fromLocal8Bit( line.mid(strpos, len) );
362
    columns[curCol->colRef] = tqunicode_line.mid(strpos, len).utf8();
358
  }
363
  }
359
364
360
365

Return to bug 1030