Commit 139cf222 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: rename a signal to be more self-documenting

parent 1dbb9988
...@@ -599,7 +599,7 @@ void PLModel::processInputItemUpdate( input_thread_t *p_input ) ...@@ -599,7 +599,7 @@ void PLModel::processInputItemUpdate( input_thread_t *p_input )
if( p_input && !( p_input->b_dead || !vlc_object_alive( p_input ) ) ) if( p_input && !( p_input->b_dead || !vlc_object_alive( p_input ) ) )
{ {
PLItem *item = findByInput( rootItem, input_GetItem( p_input )->i_id ); 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 ) ); processInputItemUpdate( input_GetItem( p_input ) );
} }
...@@ -652,7 +652,7 @@ void PLModel::processItemAppend( int i_item, int i_parent ) ...@@ -652,7 +652,7 @@ void PLModel::processItemAppend( int i_item, int i_parent )
endInsertRows(); endInsertRows();
if( newItem->inputItem() == THEMIM->currentInputItem() ) if( newItem->inputItem() == THEMIM->currentInputItem() )
emit currentChanged( index( newItem, 0 ) ); emit currentIndexChanged( index( newItem, 0 ) );
} }
void PLModel::rebuild( playlist_item_t *p_root ) 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 ) ...@@ -846,11 +846,11 @@ void PLModel::sort( const int i_root_id, const int column, Qt::SortOrder order )
if( i_popup_item > -1 ) if( i_popup_item > -1 )
{ {
PLItem *popupitem = findById( rootItem, i_popup_item ); 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 */ /* reset i_popup_item as we don't show it as selected anymore anyway */
i_popup_item = -1; 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 ) void PLModel::search( const QString& search_text, const QModelIndex & idx, bool b_recursive )
......
...@@ -115,7 +115,7 @@ public: ...@@ -115,7 +115,7 @@ public:
} }
signals: signals:
void currentChanged( const QModelIndex& ); void currentIndexChanged( const QModelIndex& );
void rootChanged(); void rootChanged();
public slots: public slots:
......
...@@ -82,7 +82,7 @@ StandardPLPanel::StandardPLPanel( PlaylistWidget *_parent, ...@@ -82,7 +82,7 @@ StandardPLPanel::StandardPLPanel( PlaylistWidget *_parent,
DCONNECT( THEMIM, leafBecameParent( int ), DCONNECT( THEMIM, leafBecameParent( int ),
this, browseInto( int ) ); this, browseInto( int ) );
CONNECT( model, currentChanged( const QModelIndex& ), CONNECT( model, currentIndexChanged( const QModelIndex& ),
this, handleExpansion( const QModelIndex& ) ); this, handleExpansion( const QModelIndex& ) );
CONNECT( model, rootChanged(), this, browseInto() ); CONNECT( model, rootChanged(), this, browseInto() );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment