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

(-)kdebase/kdesktop/lock/lockprocess.cc.tooltips (+20 lines)
Lines 960-965 Link Here
960
960
961
    setGeometry(0, 0, mRootWidth, mRootHeight);
961
    setGeometry(0, 0, mRootWidth, mRootHeight);
962
962
963
	// Hack to close all tooltips on screen
964
	Window rootWindow = RootWindow(x11Display(), x11Screen());
965
	Window parent;
966
	Window* children = NULL;
967
	Window* child = NULL;
968
	unsigned int noOfChildren = 0;
969
	XWindowAttributes childAttr;
970
	Window childTransient;
971
	 
972
	if(XQueryTree(x11Display(), rootWindow, &rootWindow, &parent, &children, &noOfChildren) && noOfChildren>0 ) {
973
		for (unsigned int i=0; i<noOfChildren; i++) {
974
			if (XGetWindowAttributes(x11Display(), children[i], &childAttr) && XGetTransientForHint(x11Display(), children[i], &childTransient)) {
975
				if((childAttr.map_state == IsViewable) && (childAttr.override_redirect) && (childTransient)) {
976
					XUnmapWindow(x11Display(), children[i]);
977
				}
978
			}
979
		}
980
	}
981
	
982
963
    kdDebug(1204) << "Saver window Id: " << winId() << endl;
983
    kdDebug(1204) << "Saver window Id: " << winId() << endl;
964
}
984
}
965
985

Return to bug 1079