changeset 33473:74db5e584741

Cosmetic: Correct a comment and add a new one.
author ib
date Sun, 05 Jun 2011 14:32:53 +0000
parents beeeb43440fd
children d45052aa8b74
files gui/interface.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/gui/interface.c	Sun Jun 05 12:14:30 2011 +0000
+++ b/gui/interface.c	Sun Jun 05 14:32:53 2011 +0000
@@ -1102,7 +1102,7 @@
             return gtkSet(gtkAddPlItem, 0, (void *)item);
         return NULL;   // NOTE TO MYSELF: remove this
 
-    // get current item from playlist
+    // get next item from playlist
     case gtkGetNextPlItem:
         if (plCurrent && plCurrent->next) {
             plCurrent = plCurrent->next;
@@ -1123,6 +1123,7 @@
 
         return NULL;
 
+    // get previous item from playlist
     case gtkGetPrevPlItem:
         if (plCurrent && plCurrent->prev) {
             plCurrent = plCurrent->prev;