diff options
author | Andreas Färber <andreas.faerber@web.de> | 2009-12-13 02:11:44 +0100 |
---|---|---|
committer | malc <av1474@comtv.ru> | 2010-01-07 10:57:33 +0300 |
commit | f49188043b9ca4d28aeea82fa462282f58a36414 (patch) | |
tree | 2901e1c4d992c01e7e7c516fa46e22b90e9ac6ed /cocoa.m | |
parent | 17ccbc27def7bb8d27ffc41a3d8e6031dc46ccb4 (diff) |
Cocoa: Don't unconditionally show the window
When QEMU was launched in no-graphic, Curses or VNC mode,
don't run it as a Cocoa application.
Based on patch by Alexander Graf.
v1:
- Avoid type mismatch warning for argv
- Drop noCocoa variable
- Coding Style changes
Signed-off-by: Andreas Färber <andreas.faerber@web.de>
Cc: Alexander Graf <agraf@suse.de>
Cc: Mike Kronenberg <mike.kronenberg@kronenberg.org>
Signed-off-by: malc <av1474@comtv.ru>
Diffstat (limited to 'cocoa.m')
-rw-r--r-- | cocoa.m | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -855,6 +855,16 @@ int main (int argc, const char * argv[]) { gArgc = argc; gArgv = (char **)argv; CPSProcessSerNum PSN; + int i; + + /* In case we don't need to display a window, let's not do that */ + for (i = 1; i < argc; i++) { + if (!strcmp(argv[i], "-vnc") || + !strcmp(argv[i], "-nographic") || + !strcmp(argv[i], "-curses")) { + return qemu_main(gArgc, gArgv); + } + } NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; [NSApplication sharedApplication]; |