Commit 3c745c8b authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: cosmetics

parent 2903e5dd
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
@interface VLCMain (OldPrefs) @interface VLCMain (OldPrefs)
- (void)private_resetAndReinitializeUserDefaults; - (void)resetAndReinitializeUserDefaults;
- (void)removeOldPreferences; - (void)removeOldPreferences;
@end @end
...@@ -39,7 +39,7 @@ static const int kCurrentPreferencesVersion = 3; ...@@ -39,7 +39,7 @@ static const int kCurrentPreferencesVersion = 3;
[[NSUserDefaults standardUserDefaults] registerDefaults:appDefaults]; [[NSUserDefaults standardUserDefaults] registerDefaults:appDefaults];
} }
- (void)private_resetAndReinitializeUserDefaults - (void)resetAndReinitializeUserDefaults
{ {
// note that [NSUserDefaults resetStandardUserDefaults] will NOT correctly reset to the defaults // note that [NSUserDefaults resetStandardUserDefaults] will NOT correctly reset to the defaults
......
...@@ -91,7 +91,6 @@ static NSString * VLCInputChangedNotification = @"VLCInputChangedNotification"; ...@@ -91,7 +91,6 @@ static NSString * VLCInputChangedNotification = @"VLCInputChangedNotification";
- (void)setActiveVideoPlayback:(BOOL)b_value; - (void)setActiveVideoPlayback:(BOOL)b_value;
- (BOOL)activeVideoPlayback; - (BOOL)activeVideoPlayback;
- (void)applicationWillTerminate:(NSNotification *)notification; - (void)applicationWillTerminate:(NSNotification *)notification;
- (void)resetAndReinitializeUserDefaults;
- (void)showFullscreenController; - (void)showFullscreenController;
......
...@@ -592,11 +592,6 @@ static int ShowController(vlc_object_t *p_this, const char *psz_variable, ...@@ -592,11 +592,6 @@ static int ShowController(vlc_object_t *p_this, const char *psz_variable,
return b_active_videoplayback; return b_active_videoplayback;
} }
- (void)resetAndReinitializeUserDefaults
{
[self private_resetAndReinitializeUserDefaults];
}
@end @end
/***************************************************************************** /*****************************************************************************
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment