diff gui/ui/actions.c @ 35374:8249c2131cd3

Rename uiGotoTheNext uiProcessNextInPlaylist. This is a more descriptive (although very long) name for the variable.
author ib
date Sat, 24 Nov 2012 15:54:22 +0000
parents dd38e289f246
children 2b49f4c8c47f
line wrap: on
line diff
--- a/gui/ui/actions.c	Fri Nov 23 21:47:31 2012 +0000
+++ b/gui/ui/actions.c	Sat Nov 24 15:54:22 2012 +0000
@@ -38,7 +38,7 @@
 #include "libvo/video_out.h"
 #include "mp_core.h"
 
-int uiGotoTheNext = 1;
+int uiProcessNextInPlaylist = 1;
 
 void uiFullScreen(void)
 {
@@ -257,7 +257,7 @@
 
         if (curr) {
             uiSetFileName(curr->path, curr->name, STREAMTYPE_FILE);
-            uiGotoTheNext = 0;
+            uiProcessNextInPlaylist = 0;
             break;
         }
 
@@ -310,7 +310,7 @@
 
         if (prev) {
             uiSetFileName(prev->path, prev->name, STREAMTYPE_FILE);
-            uiGotoTheNext = (guiInfo.Playing ? 0 : 1);
+            uiProcessNextInPlaylist = (guiInfo.Playing ? 0 : 1);
             guiInfo.Track--;
             break;
         }
@@ -371,7 +371,7 @@
 
         if (next) {
             uiSetFileName(next->path, next->name, STREAMTYPE_FILE);
-            uiGotoTheNext = (guiInfo.Playing ? 0 : 1);
+            uiProcessNextInPlaylist = (guiInfo.Playing ? 0 : 1);
             guiInfo.Track++;
             break;
         }