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

(-)kdepim-3.5.13.1/libkmime/kmime_util.cpp.quotes (-7 / +4 lines)
Lines 436-450 Link Here
436
436
437
void removeQuots(TQCString &str)
437
void removeQuots(TQCString &str)
438
{
438
{
439
  str.replace(TQRegExp("\\\""), "\"");
439
  str.replace(TQRegExp("\\([\\\"])"), "\\1");
440
  str.replace(TQRegExp("\\\\"), "\\");
441
}
440
}
442
441
443
442
444
void removeQuots(TQString &str)
443
void removeQuots(TQString &str)
445
{
444
{
446
  str.replace(TQRegExp("\\\""), "\"");
445
  str.replace(TQRegExp("\\([\\\"])"), "\\1");
447
  str.replace(TQRegExp("\\\\"), "\\");
448
}
446
}
449
447
450
448
Lines 454-464 Link Here
454
  if ( TQString( str ) .contains( TQRegExp( TQString( "\"|\\\\|=|\\]|\\[|:|;|,|\\.|,|@|<|>|\\)|\\(" ) ) ) )
452
  if ( TQString( str ) .contains( TQRegExp( TQString( "\"|\\\\|=|\\]|\\[|:|;|,|\\.|,|@|<|>|\\)|\\(" ) ) ) )
455
    needsQuotes = true;
453
    needsQuotes = true;
456
454
457
  str.replace(TQRegExp("\\"), "\\\\");
455
  str.replace(TQRegExp("([\\\"])"), "\\\\1");
458
  str.replace(TQRegExp("\""), "\\\"");
459
456
460
  if (needsQuotes || forceQuotes) {
457
  if (needsQuotes || forceQuotes) {
461
    str.insert(0,'\"');
458
    str.insert(0,'"');
462
    str.append("\"");
459
    str.append("\"");
463
  }
460
  }
464
}
461
}

Return to bug 1235