From 6a275918c96dc06214e7cc9fe401e5efcee237f4 Mon Sep 17 00:00:00 2001 From: Ilkka Ollakka Date: Tue, 17 Feb 2009 01:23:34 +0200 Subject: [PATCH 1/1] qt4: change callback to new playlist-item-append/deleted --- modules/gui/qt4/components/playlist/playlist_model.cpp | 4 ++-- 1 file 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 64e52fcf3a..6b797cd0d3 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() -- 2.20.1