Fix fatal X11 errors when both external display and command arguments are provided to QApplication

This resolves Bug 1456
(cherry picked from commit 7abfc2a181)
v3.5.13-sru
Timothy Pearson 11 years ago committed by Slávek Banko
parent 045b2d9ad8
commit e7d0f7dba5

@ -1790,6 +1790,13 @@ void qt_init_internal( int *argcptr, char **argv,
}
}
#endif
if ( display ) {
// Display connection already opened by another application
appForeignDpy = TRUE;
appDpy = display;
}
else {
// Connect to X server
if( qt_is_gui_used ) {
@ -1804,6 +1811,7 @@ void qt_init_internal( int *argcptr, char **argv,
XSynchronize( appDpy, TRUE );
}
}
}
// Common code, regardless of whether display is foreign.
// Get X parameters

Loading…
Cancel
Save