# HG changeset patch # User reimar # Date 1187433015 0 # Node ID 7ac48ed8c39442e5681b2da8a968cb0b990db365 # Parent 8595d6dbd0ed252f1d343fad588148b53051da2a Functions that do not return a value must be void diff -r 8595d6dbd0ed -r 7ac48ed8c394 libvo/vo_macosx.h --- a/libvo/vo_macosx.h Sat Aug 18 10:29:31 2007 +0000 +++ b/libvo/vo_macosx.h Sat Aug 18 10:30:15 2007 +0000 @@ -51,8 +51,8 @@ - (BOOL) resignFirstResponder; //window & rendering -- (id) preinit; -- (id) config; +- (void) preinit; +- (void) config; - (void) prepareOpenGL; - (void) render; - (void) reshape; diff -r 8595d6dbd0ed -r 7ac48ed8c394 libvo/vo_macosx.m --- a/libvo/vo_macosx.m Sat Aug 18 10:29:31 2007 +0000 +++ b/libvo/vo_macosx.m Sat Aug 18 10:30:15 2007 +0000 @@ -335,7 +335,7 @@ // NSOpenGLView Subclass ////////////////////////////////////////////////////////////////////////// @implementation MPlayerOpenGLView -- (id) preinit +- (void) preinit { //init menu [self initMenu]; @@ -356,7 +356,7 @@ winSizeMult = 1; } -- (id) config +- (void) config { uint32_t d_width; uint32_t d_height;