]> git.sesse.net Git - vlc/commitdiff
qt4: fix compile which was caused by removing one line too much in rebasing, my bad
authorIlkka Ollakka <ileoo@videolan.org>
Tue, 17 Feb 2009 00:04:06 +0000 (02:04 +0200)
committerIlkka Ollakka <ileoo@videolan.org>
Tue, 17 Feb 2009 00:04:06 +0000 (02:04 +0200)
modules/gui/qt4/components/playlist/playlist_model.cpp

index 6b797cd0d36f4d984091ce521b8c9c5434703120..8f6f0494093bc6cc4374310d6a479054cb6a938d 100644 (file)
@@ -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