Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
03a3319a
Commit
03a3319a
authored
Sep 16, 2008
by
Pierre d'Herbemont
Browse files
macosx: Properly relaunch VLC when asked for.
parent
ff396357
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/gui/macosx/intf.m
View file @
03a3319a
...
...
@@ -31,6 +31,7 @@
#include <sys/param.h>
/* for MAXPATHLEN */
#include <string.h>
#include <vlc_keys.h>
#include <spawn.h>
#ifdef HAVE_CONFIG_H
# include "config.h"
...
...
@@ -2270,7 +2271,11 @@ end:
[[
NSUserDefaults
standardUserDefaults
]
synchronize
];
/* Relaunch now */
[[
NSWorkspace
sharedWorkspace
]
launchApplication
:[[
NSBundle
mainBundle
]
bundlePath
]];
const
char
*
path
=
[[[
NSBundle
mainBundle
]
executablePath
]
UTF8String
];
const
char
*
spawnedArgs
[
2
]
=
{
path
,
NULL
};
char
*
spawnedEnv
[]
=
{
NULL
};
posix_spawn
(
NULL
,
path
,
NULL
,
NULL
,
spawnedArgs
,
spawnedEnv
);
exit
(
0
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment