diff gui/win32/interface.c @ 33726:a800f30c40d1

Cosmetic: Rename gui() parameter. Change it from 'type' to 'what' to point out that it is a request.
author ib
date Tue, 05 Jul 2011 10:54:16 +0000
parents f3361b27a151
children b4c64f168b29
line wrap: on
line diff
--- a/gui/win32/interface.c	Tue Jul 05 10:47:51 2011 +0000
+++ b/gui/win32/interface.c	Tue Jul 05 10:54:16 2011 +0000
@@ -481,7 +481,7 @@
 }
 
 /* this function gets called by mplayer to update the gui */
-int gui(int type, void *arg)
+int gui(int what, void *arg)
 {
     stream_t *stream = arg;
 #ifdef CONFIG_DVDREAD
@@ -497,7 +497,7 @@
         playtree = mpctx_get_playtree_iter(guiInfo.mpcontext);
     }
 
-    switch (type)
+    switch (what)
     {
         case GMP_PREPARATION:
         {
@@ -750,7 +750,7 @@
           break;
         }
         default:
-            mp_msg(MSGT_GPLAYER, MSGL_ERR, "[GUI] GOT UNHANDLED EVENT %i\n", type);
+            mp_msg(MSGT_GPLAYER, MSGL_ERR, "[GUI] GOT UNHANDLED EVENT %i\n", what);
     }
     return 1;
 }