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

(-)kdebase/config.h.cmake.ORI (+3 lines)
Lines 174-176 Link Here
174
174
175
// kdm, kcontrol
175
// kdm, kcontrol
176
#cmakedefine WITH_XRANDR "@WITH_XRANDR@"
176
#cmakedefine WITH_XRANDR "@WITH_XRANDR@"
177
178
// tsak
179
#cmakedefine BUILD_TSAK "@BUILD_TSAK@"
(-)kdebase/kdesktop/lock/main.cc.tsak (-1 / +8 lines)
Lines 207-214 Link Here
207
        struct stat st;
207
        struct stat st;
208
        KSimpleConfig* tdmconfig;
208
        KSimpleConfig* tdmconfig;
209
        OPEN_TDMCONFIG_AND_SET_GROUP
209
        OPEN_TDMCONFIG_AND_SET_GROUP
210
#ifdef BUILD_TSAK
210
        trinity_desktop_lock_use_sak = tdmconfig->readBoolEntry("UseSAK", true);
211
        trinity_desktop_lock_use_sak = tdmconfig->readBoolEntry("UseSAK", true);
211
212
#else
213
        trinity_desktop_lock_use_sak = false;
214
#endif
212
        LockProcess process;
215
        LockProcess process;
213
216
214
        // Start loading core functions, such as the desktop wallpaper interface
217
        // Start loading core functions, such as the desktop wallpaper interface
Lines 272-278 Link Here
272
        trinity_desktop_lock_use_system_modal_dialogs = !KDesktopSettings::useUnmanagedLockWindows();
275
        trinity_desktop_lock_use_system_modal_dialogs = !KDesktopSettings::useUnmanagedLockWindows();
273
        trinity_desktop_lock_delay_screensaver_start = KDesktopSettings::delaySaverStart();
276
        trinity_desktop_lock_delay_screensaver_start = KDesktopSettings::delaySaverStart();
274
        if (trinity_desktop_lock_use_system_modal_dialogs) {
277
        if (trinity_desktop_lock_use_system_modal_dialogs) {
278
#ifdef BUILD_TSAK
275
            trinity_desktop_lock_use_sak = tdmconfig->readBoolEntry("UseSAK", true);
279
            trinity_desktop_lock_use_sak = tdmconfig->readBoolEntry("UseSAK", true);
280
#else
281
            trinity_desktop_lock_use_sak = false;
282
#endif
276
        }
283
        }
277
        else {
284
        else {
278
            trinity_desktop_lock_use_sak = false;			// If SAK is enabled with unmanaged windows, the SAK dialog will never close and will "burn in" the screen
285
            trinity_desktop_lock_use_sak = false;			// If SAK is enabled with unmanaged windows, the SAK dialog will never close and will "burn in" the screen
(-)kdebase/kdm/kfrontend/kgapp.cpp.tsak (+4 lines)
Lines 195-201 Link Here
195
	KProcess *dcop = 0;
195
	KProcess *dcop = 0;
196
	KProcess *kwin = 0;
196
	KProcess *kwin = 0;
197
197
198
#ifdef BUILD_TSAK
198
	trinity_desktop_lock_use_sak = _useSAK;
199
	trinity_desktop_lock_use_sak = _useSAK;
200
#else
201
	trinity_desktop_lock_use_sak = false;
202
#endif
199
	if (trinity_desktop_lock_use_sak) {
203
	if (trinity_desktop_lock_use_sak) {
200
		tsak = new KProcess;
204
		tsak = new KProcess;
201
		*tsak << TQCString( argv0, strrchr( argv0, '/' ) - argv0 + 2 ) + "tsak";
205
		*tsak << TQCString( argv0, strrchr( argv0, '/' ) - argv0 + 2 ) + "tsak";

Return to bug 1180