[vlc-devel] commit: qt4: fix compile which was caused by removing one line too much in rebasing, my bad (Ilkka Ollakka )

git version control git at videolan.org
Tue Feb 17 01:04:23 CET 2009


vlc | branch: master | Ilkka Ollakka <ileoo at videolan.org> | Tue Feb 17 02:04:06 2009 +0200| [19dc51b1638333cfeaf16de5fbcb3017eb238fe1] | committer: Ilkka Ollakka 

qt4: fix compile which was caused by removing one line too much in rebasing, my bad

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=19dc51b1638333cfeaf16de5fbcb3017eb238fe1
---

 .../gui/qt4/components/playlist/playlist_model.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/gui/qt4/components/playlist/playlist_model.cpp b/modules/gui/qt4/components/playlist/playlist_model.cpp
index 6b797cd..8f6f049 100644
--- a/modules/gui/qt4/components/playlist/playlist_model.cpp
+++ b/modules/gui/qt4/components/playlist/playlist_model.cpp
@@ -525,7 +525,7 @@ void PLModel::customEvent( QEvent *event )
     PLEvent *ple = static_cast<PLEvent *>(event);
 
     if( type == ItemAppend_Type )
-        ProcessItemAppend( ple->p_add );
+        ProcessItemAppend( &ple->add );
     else if( type == ItemDelete_Type )
         ProcessItemRemoval( ple->i_id );
     else




More information about the vlc-devel mailing list