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

(-)kdebase-3.5.12/kdesktop/lock/lockprocess.cc.ORI (-5 / +1 lines)
Lines 1045-1061 Link Here
1045
            mHackProc << word;
1045
            mHackProc << word;
1046
        }
1046
        }
1047
1047
1048
	if (!mForbidden)
1048
	if (!mForbidden && mHackProc.start() == true)
1049
	{
1049
	{
1050
1051
		if (mHackProc.start() == true)
1052
		{
1053
#ifdef HAVE_SETPRIORITY
1050
#ifdef HAVE_SETPRIORITY
1054
			setpriority(PRIO_PROCESS, mHackProc.pid(), mPriority);
1051
			setpriority(PRIO_PROCESS, mHackProc.pid(), mPriority);
1055
#endif
1052
#endif
1056
 		        //bitBlt(this, 0, 0, &mOriginal);
1053
 		        //bitBlt(this, 0, 0, &mOriginal);
1057
	                return true;
1054
	                return true;
1058
		}
1059
	}
1055
	}
1060
	else
1056
	else
1061
	// we aren't allowed to start the specified screensaver either because it didn't run for some reason
1057
	// we aren't allowed to start the specified screensaver either because it didn't run for some reason

Return to bug 753