Changeset 48137 in vbox
- Timestamp:
- Aug 29, 2013 6:19:59 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 88518
- Location:
- trunk/src/VBox/Frontends
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxSDL/VBoxSDL.cpp
r46649 r48137 733 733 DECLEXPORT(int) TrustedMain(int argc, char **argv, char **envp) 734 734 { 735 #ifdef Q_WS_X11 736 if (!XInitThreads()) 737 return 1; 738 #endif 735 739 #ifdef VBOXSDL_WITH_X11 736 740 /* … … 3043 3047 int main(int argc, char **argv) 3044 3048 { 3049 #ifdef Q_WS_X11 3050 if (!XInitThreads()) 3051 return 1; 3052 #endif 3045 3053 /* 3046 3054 * Before we do *anything*, we initialize the runtime. -
trunk/src/VBox/Frontends/VirtualBox/src/main.cpp
r47831 r48137 300 300 int iResultCode = 1; 301 301 302 #ifdef Q_WS_X11 303 if (!XInitThreads()) 304 return 1; 305 #endif 306 302 307 /* Simulate try-catch block: */ 303 308 do … … 537 542 * Don't do this if we are only starting the selector window. */ 538 543 bool fInitSUPLib = false; 544 #ifdef Q_WS_X11 545 if (!XInitThreads()) 546 return 1; 547 #endif 539 548 for (int i = 1; i < argc; ++i) 540 549 {
Note:
See TracChangeset
for help on using the changeset viewer.