Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
03a3319a
Commit
03a3319a
authored
Sep 16, 2008
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: Properly relaunch VLC when asked for.
parent
ff396357
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+6
-1
No files found.
modules/gui/macosx/intf.m
View file @
03a3319a
...
@@ -31,6 +31,7 @@
...
@@ -31,6 +31,7 @@
#include <sys/param.h>
/* for MAXPATHLEN */
#include <sys/param.h>
/* for MAXPATHLEN */
#include <string.h>
#include <string.h>
#include <vlc_keys.h>
#include <vlc_keys.h>
#include <spawn.h>
#ifdef HAVE_CONFIG_H
#ifdef HAVE_CONFIG_H
# include "config.h"
# include "config.h"
...
@@ -2270,7 +2271,11 @@ end:
...
@@ -2270,7 +2271,11 @@ end:
[[
NSUserDefaults
standardUserDefaults
]
synchronize
];
[[
NSUserDefaults
standardUserDefaults
]
synchronize
];
/* Relaunch now */
/* 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
);
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