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

(-)a/karm/idletimedetector.cpp (-1 / +1 lines)
Lines 19-24 IdleTimeDetector::IdleTimeDetector(int maxIdle) Link Here
19
  if(XScreenSaverQueryExtension(tqt_xdisplay(), &event_base, &error_base)) 
19
  if(XScreenSaverQueryExtension(tqt_xdisplay(), &event_base, &error_base)) 
20
  {
20
  {
21
    _idleDetectionPossible = true;
21
    _idleDetectionPossible = true;
22
    _mit_info = XScreenSaverAllocInfo ();
22
  }
23
  }
23
  else 
24
  else 
24
  {
25
  {
Lines 44-50 void IdleTimeDetector::check() Link Here
44
#ifdef HAVE_LIBXSS
45
#ifdef HAVE_LIBXSS
45
  if (_idleDetectionPossible)
46
  if (_idleDetectionPossible)
46
  {
47
  {
47
    _mit_info = XScreenSaverAllocInfo ();
48
    XScreenSaverQueryInfo(tqt_xdisplay(), tqt_xrootwin(), _mit_info);
48
    XScreenSaverQueryInfo(tqt_xdisplay(), tqt_xrootwin(), _mit_info);
49
    int idleSeconds = (_mit_info->idle/1000);
49
    int idleSeconds = (_mit_info->idle/1000);
50
    if (idleSeconds >= _maxIdle)
50
    if (idleSeconds >= _maxIdle)

Return to bug 1438