]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/components/playlist/standardpanel.cpp
Qt: rename a signal to be more self-documenting
[vlc] / modules / gui / qt4 / components / playlist / standardpanel.cpp
index 76d7e25596faba1bb6f51dd59bc9d9b30a4dc4c5..95fa90e58714fd811324c9f3cf68ac794e822780 100644 (file)
@@ -82,7 +82,7 @@ StandardPLPanel::StandardPLPanel( PlaylistWidget *_parent,
     DCONNECT( THEMIM, leafBecameParent( int ),
               this, browseInto( int ) );
 
-    CONNECT( model, currentChanged( const QModelIndex& ),
+    CONNECT( model, currentIndexChanged( const QModelIndex& ),
              this, handleExpansion( const QModelIndex& ) );
     CONNECT( model, rootChanged(), this, browseInto() );
 
@@ -188,6 +188,8 @@ void StandardPLPanel::setRoot( playlist_item_t *p_item, bool b )
         currentView->setModel( mlmodel );
     }
     else
+#else
+    Q_UNUSED( b );
 #endif
     {
         msg_Dbg( p_intf, "Normal PL/ML or SD" );
@@ -351,6 +353,7 @@ void StandardPLPanel::changeModel( bool b_ml )
     if( currentView->model() != mod )
         currentView->setModel( mod );
 #else
+    Q_UNUSED( b_ml );
     if( currentView->model() != model )
         currentView->setModel( model );
 #endif
@@ -418,8 +421,10 @@ void StandardPLPanel::cycleViews()
     else if( currentView == treeView )
         showView( LIST_VIEW );
     else if( currentView == listView )
+#ifndef NDEBUG
         showView( PICTUREFLOW_VIEW  );
     else if( currentView == picFlowView )
+#endif
         showView( ICON_VIEW );
     else
         assert( 0 );