[vlc-devel] commit: qt4: change callback to new playlist-item-append/deleted ( Ilkka Ollakka )
git version control
git at videolan.org
Tue Feb 17 00:26:21 CET 2009
vlc | branch: master | Ilkka Ollakka <ileoo at videolan.org> | Tue Feb 17 01:23:34 2009 +0200| [6a275918c96dc06214e7cc9fe401e5efcee237f4] | committer: Ilkka Ollakka
qt4: change callback to new playlist-item-append/deleted
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=6a275918c96dc06214e7cc9fe401e5efcee237f4
---
.../gui/qt4/components/playlist/playlist_model.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/gui/qt4/components/playlist/playlist_model.cpp b/modules/gui/qt4/components/playlist/playlist_model.cpp
index 64e52fc..6b797cd 100644
--- a/modules/gui/qt4/components/playlist/playlist_model.cpp
+++ b/modules/gui/qt4/components/playlist/playlist_model.cpp
@@ -228,8 +228,8 @@ void PLModel::addCallbacks()
var_AddCallback( p_playlist, "item-current", PlaylistNext, this );
*/
/* One item has been updated */
- var_AddCallback( p_playlist, "item-append", ItemAppended, this );
- var_AddCallback( p_playlist, "item-deleted", ItemDeleted, this );
+ var_AddCallback( p_playlist, "playlist-item-append", ItemAppended, this );
+ var_AddCallback( p_playlist, "playlist-item-deleted", ItemDeleted, this );
}
void PLModel::delCallbacks()
More information about the vlc-devel
mailing list