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

(-)a/tdm/kfrontend/kgapp.cpp (+2 lines)
Lines 127-137 void GreeterApp::init() Link Here
127
}
127
}
128
128
129
void GreeterApp::deviceChanged(TDEGenericDevice* device) {
129
void GreeterApp::deviceChanged(TDEGenericDevice* device) {
130
#ifdef WITH_XRANDR
130
	if (device->type() == TDEGenericDeviceType::Monitor) {
131
	if (device->type() == TDEGenericDeviceType::Monitor) {
131
		KRandrSimpleAPI *randrsimple = new KRandrSimpleAPI();
132
		KRandrSimpleAPI *randrsimple = new KRandrSimpleAPI();
132
		randrsimple->applyHotplugRules(KDE_CONFDIR);
133
		randrsimple->applyHotplugRules(KDE_CONFDIR);
133
		delete randrsimple;
134
		delete randrsimple;
134
	}
135
	}
136
#endif // WITH_XRANDR
135
}
137
}
136
138
137
void
139
void

Return to bug 1582