Mercurial > mplayer.hg
diff gui/interface.c @ 33734:1fbe7adc4eaf
Rename GUI playtree import functions.
Rename import_initial_playtree_into_gui() guiInitializePlaylist()
and import_playtree_playlist_into_gui() guiAddPlaylist().
| author | ib |
|---|---|
| date | Tue, 05 Jul 2011 15:04:00 +0000 |
| parents | 7458d793b38b |
| children | 71c29e8ec68f |
line wrap: on
line diff
--- a/gui/interface.c Tue Jul 05 14:00:18 2011 +0000 +++ b/gui/interface.c Tue Jul 05 15:04:00 2011 +0000 @@ -1411,7 +1411,7 @@ // into the gui playlist by either: // - overwriting gui pl (enqueue=0) // - appending it to gui pl (enqueue=1) -int import_initial_playtree_into_gui(play_tree_t *my_playtree, m_config_t *config, int enqueue) +int guiInitializePlaylist(play_tree_t *my_playtree, m_config_t *config, int enqueue) { play_tree_iter_t *my_pt_iter = NULL; int result = 0; @@ -1442,7 +1442,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 import_playtree_playlist_into_gui(play_tree_t *my_playtree, m_config_t *config) +int guiAddPlaylist(play_tree_t *my_playtree, m_config_t *config) { play_tree_iter_t *my_pt_iter = NULL; int result = 0;
