]> git.sesse.net Git - vlc/commitdiff
* declared the shared instance properly (forgot that yesterday)
authorFelix Paul Kühne <fkuehne@videolan.org>
Mon, 3 Jan 2005 20:10:38 +0000 (20:10 +0000)
committerFelix Paul Kühne <fkuehne@videolan.org>
Mon, 3 Jan 2005 20:10:38 +0000 (20:10 +0000)
modules/gui/macosx/prefs.h
modules/gui/macosx/prefs.m

index 2f710a145d785aecda69db4603d58103a6029260..534f93e0891e5599e589c4a69c4fd962beea56ae 100644 (file)
@@ -60,6 +60,8 @@
     IBOutlet id o_advanced_ckb;
 }
 
++ (VLCPrefs *)sharedInstance;
+
 - (void)initStrings;
 - (void)showPrefs;
 - (IBAction)savePrefs: (id)sender;
index 5e9ff9af6ddc4aa399a430d9c38c8bae789be73f..f8d9d543a47b3645f7b7685dbe92a3306d241235 100644 (file)
@@ -61,11 +61,11 @@ static VLCPrefs *_o_sharedMainInstance = nil;
     /* load our nib */
     [NSBundle loadNibNamed:@"Preferences" owner:self];
     
-    /* from "init" > r8571 */
+    /* from "init" =< r8571 */
     o_empty_view = [[NSView alloc] init];
     o_save_prefs = [[NSMutableDictionary alloc] init];
 
-    /* from "awakeFromNib" > r8571 */
+    /* from "awakeFromNib" =< r8571 */
     p_intf = VLCIntf;
     b_advanced = config_GetInt( p_intf, "advanced" );