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

(-)tdm/kfrontend/kgapp.cpp.orig (+4 lines)
Lines 123-133 Link Here
123
		startTimer( pingInterval * 60000 );
123
		startTimer( pingInterval * 60000 );
124
	}
124
	}
125
125
126
#ifdef COMPILE_TDEHARDWAREBACKEND
126
	TDEHardwareDevices *hwdevices = TDEGlobal::hardwareDevices();
127
	TDEHardwareDevices *hwdevices = TDEGlobal::hardwareDevices();
127
	connect(hwdevices, TQT_SIGNAL(hardwareUpdated(TDEGenericDevice*)), this, TQT_SLOT(deviceChanged(TDEGenericDevice*)));
128
	connect(hwdevices, TQT_SIGNAL(hardwareUpdated(TDEGenericDevice*)), this, TQT_SLOT(deviceChanged(TDEGenericDevice*)));
129
#endif
128
}
130
}
129
131
130
void GreeterApp::deviceChanged(TDEGenericDevice* device) {
132
void GreeterApp::deviceChanged(TDEGenericDevice* device) {
133
#ifdef COMPILE_TDEHARDWAREBACKEND
131
#ifdef WITH_XRANDR
134
#ifdef WITH_XRANDR
132
	if (device->type() == TDEGenericDeviceType::Monitor) {
135
	if (device->type() == TDEGenericDeviceType::Monitor) {
133
		KRandrSimpleAPI *randrsimple = new KRandrSimpleAPI();
136
		KRandrSimpleAPI *randrsimple = new KRandrSimpleAPI();
Lines 135-140 Link Here
135
		delete randrsimple;
138
		delete randrsimple;
136
	}
139
	}
137
#endif // WITH_XRANDR
140
#endif // WITH_XRANDR
141
#endif // COMPILE_TDEHARDWAREBACKEND
138
}
142
}
139
143
140
void
144
void

Return to bug 2110