[MPlayer-cvslog] r35608 - trunk/gui/interface.c
ib
subversion at mplayerhq.hu
Wed Dec 5 13:28:10 CET 2012
Author: ib
Date: Wed Dec 5 13:28:10 2012
New Revision: 35608
Log:
Cosmetic: Adjust indent.
Modified:
trunk/gui/interface.c
Modified: trunk/gui/interface.c
==============================================================================
--- trunk/gui/interface.c Wed Dec 5 13:26:32 2012 (r35607)
+++ trunk/gui/interface.c Wed Dec 5 13:28:10 2012 (r35608)
@@ -874,10 +874,10 @@ int guiPlaylist(int what, play_tree_t *p
if (!enqueue)
listMgr(PLAYLIST_DELETE, 0); // delete playlist before "appending"
- while ((filename = pt_iter_get_next_file(pt_iter)) != NULL)
- /* add it to end of list */
- if (add_to_gui_playlist(filename, PLAYLIST_ITEM_APPEND))
- added = True;
+ while ((filename = pt_iter_get_next_file(pt_iter)) != NULL)
+ /* add it to end of list */
+ if (add_to_gui_playlist(filename, PLAYLIST_ITEM_APPEND))
+ added = True;
uiCurr(); // update filename
guiInfo.PlaylistNext = True;
@@ -899,10 +899,10 @@ int guiPlaylist(int what, play_tree_t *p
curr = (plItem *)listMgr(PLAYLIST_ITEM_GET_CURR, 0);
- while ((filename = pt_iter_get_next_file(pt_iter)) != NULL)
- /* insert it into the list and set plCurrent=new item */
- if (add_to_gui_playlist(filename, PLAYLIST_ITEM_INSERT))
- added = True;
+ while ((filename = pt_iter_get_next_file(pt_iter)) != NULL)
+ /* insert it into the list and set plCurrent=new item */
+ if (add_to_gui_playlist(filename, PLAYLIST_ITEM_INSERT))
+ added = True;
if (curr)
listMgr(PLAYLIST_ITEM_SET_CURR, curr);
More information about the MPlayer-cvslog
mailing list