From 4166de18ec814d174817c8e379bfdc761c5195f0 Mon Sep 17 00:00:00 2001 From: reimar Date: Sat, 18 Aug 2007 10:30:15 +0000 Subject: Functions that do not return a value must be void git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24096 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/vo_macosx.h | 4 ++-- libvo/vo_macosx.m | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'libvo') diff --git a/libvo/vo_macosx.h b/libvo/vo_macosx.h index 0eb8bc0cc0..2a6365cfe4 100644 --- a/libvo/vo_macosx.h +++ b/libvo/vo_macosx.h @@ -51,8 +51,8 @@ - (BOOL) resignFirstResponder; //window & rendering -- (id) preinit; -- (id) config; +- (void) preinit; +- (void) config; - (void) prepareOpenGL; - (void) render; - (void) reshape; diff --git a/libvo/vo_macosx.m b/libvo/vo_macosx.m index cbc1dcab59..e3aa5c894a 100644 --- a/libvo/vo_macosx.m +++ b/libvo/vo_macosx.m @@ -335,7 +335,7 @@ static int control(uint32_t request, void *data, ...) // NSOpenGLView Subclass ////////////////////////////////////////////////////////////////////////// @implementation MPlayerOpenGLView -- (id) preinit +- (void) preinit { //init menu [self initMenu]; @@ -356,7 +356,7 @@ static int control(uint32_t request, void *data, ...) winSizeMult = 1; } -- (id) config +- (void) config { uint32_t d_width; uint32_t d_height; -- cgit v1.2.3