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

(-)a/tdecore/kapplication.cpp (-8 / +4 lines)
Lines 186-192 static Atom atom_NetSupported; Link Here
186
static Atom kde_xdnd_drop;
186
static Atom kde_xdnd_drop;
187
#endif
187
#endif
188
188
189
#ifdef Q_WS_X11
189
#if defined(Q_WS_X11) && defined(COMPOSITE)
190
static int composite_event, composite_error, composite_opcode;
190
static int composite_event, composite_error, composite_opcode;
191
static bool x11_composite_error_generated;
191
static bool x11_composite_error_generated;
192
static int x11_error(Display *dpy, XErrorEvent *ev) {
192
static int x11_error(Display *dpy, XErrorEvent *ev) {
Lines 1983-1989 bool KApplication::isCompositionManagerAvailable() { Link Here
1983
	return false;
1983
	return false;
1984
}
1984
}
1985
1985
1986
bool KApplication::detectCompositionManagerAvailable(bool force_available) {
1986
bool KApplication::detectCompositionManagerAvailable(bool force_available, bool /* available */) {
1987
	const char *home;
1987
	const char *home;
1988
	struct passwd *p;
1988
	struct passwd *p;
1989
	p = getpwuid(getuid());
1989
	p = getpwuid(getuid());
Lines 2025-2045 Display* KApplication::openX11RGBADisplay() { Link Here
2025
	return 0;
2025
	return 0;
2026
}
2026
}
2027
2027
2028
Qt::HANDLE KApplication::getX11RGBAVisual(char *display) {
2028
Qt::HANDLE KApplication::getX11RGBAVisual(Display *dpy) {
2029
	return 0;
2029
	return 0;
2030
}
2030
}
2031
2031
2032
Qt::HANDLE KApplication::getX11RGBAColormap(char *display) {
2032
Qt::HANDLE KApplication::getX11RGBAColormap(Display *dpy) {
2033
	return 0;
2033
	return 0;
2034
}
2034
}
2035
2035
2036
bool KApplication::isX11CompositionAvailable() {
2036
bool KApplication::isX11CompositionAvailable() {
2037
	return false;
2037
	return false;
2038
}
2038
}
2039
2040
KApplication KApplication::KARGBApplication( bool allowStyles ) {
2041
	return KApplication::KApplication(allowStyles, true);
2042
}
2043
#endif
2039
#endif
2044
2040
2045
static bool kapp_block_user_input = false;
2041
static bool kapp_block_user_input = false;

Return to bug 1289