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

(-)a/kdesktop/lock/main.cc (+11 lines)
Lines 422-429 int main( int argc, char **argv ) Link Here
422
                    return 12;
422
                    return 12;
423
                }
423
                }
424
424
425
		// Get root window attributes
426
		XWindowAttributes rootAttr;
427
		XGetWindowAttributes(tqt_xdisplay(), RootWindow(tqt_xdisplay(), tqt_xscreen()), &rootAttr);
428
429
		// Disable reception of all X11 events on the root window
430
		XSelectInput( tqt_xdisplay(), tqt_xrootwin(), 0 );
431
		app.processEvents();
432
425
                // wait for SIGUSR1, SIGUSR2, SIGWINCH, SIGTTIN, or SIGTTOU
433
                // wait for SIGUSR1, SIGUSR2, SIGWINCH, SIGTTIN, or SIGTTOU
426
                sigsuspend(&new_mask);
434
                sigsuspend(&new_mask);
435
436
		// Reenable reception of X11 events on the root window
437
		XSelectInput( tqt_xdisplay(), tqt_xrootwin(), rootAttr.your_event_mask );
427
            }
438
            }
428
        }
439
        }
429
440

Return to bug 2078