[vlc-devel] commit: macosx: compilation fixes for the native 10.4u SDK ( Felix Paul Kühne )

git version control git at videolan.org
Mon Jul 20 23:56:33 CEST 2009


vlc | branch: 0.9-bugfix | Felix Paul Kühne <fkuehne at videolan.org> | Mon Jul 20 23:56:10 2009 +0200| [8cc72e50dc5de850291128c52123eefcae8e7981] | committer: Felix Paul Kühne 

macosx: compilation fixes for the native 10.4u SDK

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=8cc72e50dc5de850291128c52123eefcae8e7981
---

 modules/gui/macosx/fspanel.m |    4 ----
 modules/gui/macosx/intf.h    |    1 +
 modules/gui/macosx/intf.m    |    6 +-----
 3 files changed, 2 insertions(+), 9 deletions(-)

diff --git a/modules/gui/macosx/fspanel.m b/modules/gui/macosx/fspanel.m
index 4bc7157..bd99f62 100644
--- a/modules/gui/macosx/fspanel.m
+++ b/modules/gui/macosx/fspanel.m
@@ -31,10 +31,6 @@
 #import "misc.h"
 #import "fspanel.h"
 
- at interface VLCFSPanel ()
-- (void)hideMouse;
- at end
-
 /*****************************************************************************
  * VLCFSPanel
  *****************************************************************************/
diff --git a/modules/gui/macosx/intf.h b/modules/gui/macosx/intf.h
index 24bf9ff..6551999 100644
--- a/modules/gui/macosx/intf.h
+++ b/modules/gui/macosx/intf.h
@@ -323,6 +323,7 @@ struct intf_sys_t
 }
 
 + (VLCMain *)sharedInstance;
+- (void)_removeOldPreferences;
 
 - (intf_thread_t *)getIntf;
 - (void)setIntf:(intf_thread_t *)p_mainintf;
diff --git a/modules/gui/macosx/intf.m b/modules/gui/macosx/intf.m
index afb2aa6..c57da5f 100644
--- a/modules/gui/macosx/intf.m
+++ b/modules/gui/macosx/intf.m
@@ -215,10 +215,6 @@ static int InteractCallback( vlc_object_t *p_this, const char *psz_variable,
 #pragma mark -
 #pragma mark Private
 
- at interface VLCMain ()
-- (void)_removeOldPreferences;
- at end
-
 /*****************************************************************************
  * VLCMain implementation
  *****************************************************************************/
@@ -789,7 +785,7 @@ static NSString * VLCToolbarMediaControl     = @"VLCToolbarMediaControl";
         [toolbarItem setLabel:@"Media Controls"];
         [toolbarItem setPaletteLabel:@"Media Controls"];
 
-        NSSize size = toolbarMediaControl.frame.size;
+        NSSize size = [toolbarMediaControl frame].size;
         [toolbarItem setView:toolbarMediaControl];
         [toolbarItem setMinSize:size];
         size.width += 1000.;




More information about the vlc-devel mailing list