diff gui/interface.c @ 33752:6cea6d268f97

Cosmetic: Rename the GUI playlist functions. Rename guiInitializePlaylist() guiPlaylistInitialize() and guiAddPlaylist() guiPlaylistAdd().
author ib
date Thu, 07 Jul 2011 14:54:53 +0000
parents 8b5898908212
children 1909e4015a3c
line wrap: on
line diff
--- a/gui/interface.c	Thu Jul 07 14:47:48 2011 +0000
+++ b/gui/interface.c	Thu Jul 07 14:54:53 2011 +0000
@@ -867,7 +867,7 @@
 // into the gui playlist by either:
 // - overwriting gui pl (enqueue=0)
 // - appending it to gui pl (enqueue=1)
-int guiInitializePlaylist(play_tree_t *my_playtree, m_config_t *config, int enqueue)
+int guiPlaylistInitialize(play_tree_t *my_playtree, m_config_t *config, int enqueue)
 {
     play_tree_iter_t *my_pt_iter = NULL;
     int result = 0;
@@ -898,7 +898,7 @@
 // for example by parsing some MOV-Reference-File; or by loading an playlist
 // with "File Open".
 // The file which contained the playlist is thereby replaced with it's contents.
-int guiAddPlaylist(play_tree_t *my_playtree, m_config_t *config)
+int guiPlaylistAdd(play_tree_t *my_playtree, m_config_t *config)
 {
     play_tree_iter_t *my_pt_iter = NULL;
     int result = 0;