[MPlayer-cvslog] r33785 - trunk/gui/interface.c

ib subversion at mplayerhq.hu
Wed Jun 29 17:26:04 CEST 2011


Author: ib
Date: Wed Jun 29 17:26:03 2011
New Revision: 33785

Log:
Cosmetic: Move command MP_CMD_QUIT to the end.

Modified:
   trunk/gui/interface.c

Modified: trunk/gui/interface.c
==============================================================================
--- trunk/gui/interface.c	Wed Jun 29 17:22:22 2011	(r33784)
+++ trunk/gui/interface.c	Wed Jun 29 17:26:03 2011	(r33785)
@@ -603,10 +603,6 @@ int guiGetEvent(int type, void *arg)
         mp_dbg(MSGT_GPLAYER, MSGL_DBG2, "[interface] guiRunCommand: %d\n", (int)arg);
 
         switch ((int)arg) {
-        case MP_CMD_QUIT:
-            uiEventHandling(evExit, 0);
-            break;
-
         case MP_CMD_VO_FULLSCREEN:
             uiEventHandling(evFullScreen, 0);
             break;
@@ -622,6 +618,10 @@ int guiGetEvent(int type, void *arg)
         case MP_CMD_STOP:
             uiEventHandling(evStop, 0);
             break;
+
+        case MP_CMD_QUIT:
+            uiEventHandling(evExit, 0);
+            break;
         }
 
         break;


More information about the MPlayer-cvslog mailing list