[MPlayer-cvslog] r24096 - in trunk/libvo: vo_macosx.h vo_macosx.m

reimar subversion at mplayerhq.hu
Sat Aug 18 12:30:15 CEST 2007


Author: reimar
Date: Sat Aug 18 12:30:15 2007
New Revision: 24096

Log:
Functions that do not return a value must be void


Modified:
   trunk/libvo/vo_macosx.h
   trunk/libvo/vo_macosx.m

Modified: trunk/libvo/vo_macosx.h
==============================================================================
--- trunk/libvo/vo_macosx.h	(original)
+++ trunk/libvo/vo_macosx.h	Sat Aug 18 12:30:15 2007
@@ -51,8 +51,8 @@
 - (BOOL) resignFirstResponder;
 
 //window & rendering
-- (id) preinit;
-- (id) config;
+- (void) preinit;
+- (void) config;
 - (void) prepareOpenGL;
 - (void) render;
 - (void) reshape;

Modified: trunk/libvo/vo_macosx.m
==============================================================================
--- trunk/libvo/vo_macosx.m	(original)
+++ trunk/libvo/vo_macosx.m	Sat Aug 18 12:30:15 2007
@@ -335,7 +335,7 @@ static int control(uint32_t request, voi
 // NSOpenGLView Subclass
 //////////////////////////////////////////////////////////////////////////
 @implementation MPlayerOpenGLView
-- (id) preinit
+- (void) preinit
 {
 	//init menu
 	[self initMenu];
@@ -356,7 +356,7 @@ static int control(uint32_t request, voi
 	winSizeMult = 1;
 }
 
-- (id) config
+- (void) config
 {
 	uint32_t d_width;
 	uint32_t d_height;



More information about the MPlayer-cvslog mailing list