]> git.sesse.net Git - vlc/commitdiff
Qt: rename a signal to be more self-documenting
authorJean-Baptiste Kempf <jb@videolan.org>
Thu, 20 Oct 2011 17:17:23 +0000 (19:17 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Fri, 21 Oct 2011 13:26:00 +0000 (15:26 +0200)
modules/gui/qt4/components/playlist/playlist_model.cpp
modules/gui/qt4/components/playlist/playlist_model.hpp
modules/gui/qt4/components/playlist/standardpanel.cpp

index c40ea4dff8a61a26ea00c875fd9c8d31388645b7..183038cf7e2b15d4de2829883025354b06bc750f 100644 (file)
@@ -599,7 +599,7 @@ void PLModel::processInputItemUpdate( input_thread_t *p_input )
     if( p_input && !( p_input->b_dead || !vlc_object_alive( p_input ) ) )
     {
         PLItem *item = findByInput( rootItem, input_GetItem( p_input )->i_id );
-        if( item ) emit currentChanged( index( item, 0 ) );
+        if( item ) emit currentIndexChanged( index( item, 0 ) );
     }
     processInputItemUpdate( input_GetItem( p_input ) );
 }
@@ -652,7 +652,7 @@ void PLModel::processItemAppend( int i_item, int i_parent )
     endInsertRows();
 
     if( newItem->inputItem() == THEMIM->currentInputItem() )
-        emit currentChanged( index( newItem, 0 ) );
+        emit currentIndexChanged( index( newItem, 0 ) );
 }
 
 void PLModel::rebuild( playlist_item_t *p_root )
@@ -846,11 +846,11 @@ void PLModel::sort( const int i_root_id, const int column, Qt::SortOrder order )
     if( i_popup_item > -1 )
     {
         PLItem *popupitem = findById( rootItem, i_popup_item );
-        if( popupitem ) emit currentChanged( index( popupitem, 0 ) );
+        if( popupitem ) emit currentIndexChanged( index( popupitem, 0 ) );
         /* reset i_popup_item as we don't show it as selected anymore anyway */
         i_popup_item = -1;
     }
-    else if( currentIndex().isValid() ) emit currentChanged( currentIndex() );
+    else if( currentIndex().isValid() ) emit currentIndexChanged( currentIndex() );
 }
 
 void PLModel::search( const QString& search_text, const QModelIndex & idx, bool b_recursive )
index a1cf54070e17a39e9a88d83cfda232e09e60e781..e4dab02d653cd7fd1270a3531689b2a12ffeb8e7 100644 (file)
@@ -115,7 +115,7 @@ public:
     }
 
 signals:
-    void currentChanged( const QModelIndex& );
+    void currentIndexChanged( const QModelIndex& );
     void rootChanged();
 
 public slots:
index 023ecf07687412b040f116308d23e56dd07a1665..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() );