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

(-)ksmserver/shutdowndlg.cpp.orig (-2 / +4 lines)
Lines 33-39 Link Here
33
#include <tdelocale.h>
33
#include <tdelocale.h>
34
#include <tdeconfig.h>
34
#include <tdeconfig.h>
35
#include <tdeapplication.h>
35
#include <tdeapplication.h>
36
#ifdef COMPILE_TDEHARDWAREBACKEND
36
#include <tdehardwaredevices.h>
37
#include <tdehardwaredevices.h>
38
#endif
37
#include <kdebug.h>
39
#include <kdebug.h>
38
#include <kpushbutton.h>
40
#include <kpushbutton.h>
39
#include <kstdguiitem.h>
41
#include <kstdguiitem.h>
Lines 805-811 Link Here
805
		bool canSuspend = false;
807
		bool canSuspend = false;
806
		bool canHibernate = false;
808
		bool canHibernate = false;
807
809
808
#ifdef COMPILE_HALBACKEND
810
#if defined(COMPILE_HALBACKEND)
809
		// Query HAL for suspend/resume support
811
		// Query HAL for suspend/resume support
810
		m_halCtx = libhal_ctx_new();
812
		m_halCtx = libhal_ctx_new();
811
813
Lines 860-866 Link Here
860
				canHibernate = true;
862
				canHibernate = true;
861
			}
863
			}
862
		}
864
		}
863
#else // COMPILE_HALBACKEND
865
#elif defined(COMPILE_TDEHARDWAREBACKEND) // COMPILE_HALBACKEND
864
		TDERootSystemDevice* rootDevice = TDEGlobal::hardwareDevices()->rootSystemDevice();
866
		TDERootSystemDevice* rootDevice = TDEGlobal::hardwareDevices()->rootSystemDevice();
865
		if (rootDevice) {
867
		if (rootDevice) {
866
			canFreeze = rootDevice->canFreeze();
868
			canFreeze = rootDevice->canFreeze();

Return to bug 2110