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

(-)a/tdecore/kuniqueapplication.cpp (-2 / +12 lines)
Lines 322-330 KUniqueApplication::KUniqueApplication(bool allowStyles, bool GUIenabled, bool c Link Here
322
  d->processingRequest = false;
322
  d->processingRequest = false;
323
  d->firstInstance = true;
323
  d->firstInstance = true;
324
324
325
  if (s_nofork)
325
  if (s_nofork) {
326
    // Can't call newInstance directly from the constructor since it's virtual...
326
    // Can't call newInstance directly from the constructor since it's virtual...
327
    TQTimer::singleShot( 0, this, TQT_SLOT(newInstanceNoFork()) );
327
    TQTimer::singleShot( 0, this, TQT_SLOT(newInstanceNoFork()) );
328
  }
329
  else {
330
    // Force to handle DCOP requests (newInstance call)
331
    TQTimer::singleShot( 0, this, TQT_SLOT(processDelayed()));
332
  }
328
}
333
}
329
334
330
335
Lines 338-346 KUniqueApplication::KUniqueApplication(Display *display, Qt::HANDLE visual, Link Here
338
  d->processingRequest = false;
343
  d->processingRequest = false;
339
  d->firstInstance = true;
344
  d->firstInstance = true;
340
345
341
  if (s_nofork)
346
  if (s_nofork) {
342
    // Can't call newInstance directly from the constructor since it's virtual...
347
    // Can't call newInstance directly from the constructor since it's virtual...
343
    TQTimer::singleShot( 0, this, TQT_SLOT(newInstanceNoFork()) );
348
    TQTimer::singleShot( 0, this, TQT_SLOT(newInstanceNoFork()) );
349
  }
350
  else {
351
    // Force to handle DCOP requests (newInstance call)
352
    TQTimer::singleShot( 0, this, TQT_SLOT(processDelayed()));
353
  }
344
}
354
}
345
#endif
355
#endif
346
356

Return to bug 2437