Commit 9a68967d authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt, selector: Signal renaming to avoid Qt confusion

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent b235e65f
......@@ -144,7 +144,7 @@ PlaylistWidget::PlaylistWidget( intf_thread_t *_p_i, QWidget *_par )
layout->setColumnStretch( 3, 3 );
/* Connect the activation of the selector to a redefining of the PL */
DCONNECT( selector, activated( playlist_item_t *, bool ),
DCONNECT( selector, categoryActivated( playlist_item_t *, bool ),
mainView, setRoot( playlist_item_t *, bool ) );
mainView->setRoot( p_root, false );
......
......@@ -276,7 +276,7 @@ void PLSelector::setSource( QTreeWidgetItem *item )
}
else if( i_type == SQL_ML )
{
emit activated( NULL, true );
emit categoryActivated( NULL, true );
return;
}
......@@ -311,7 +311,7 @@ void PLSelector::setSource( QTreeWidgetItem *item )
/* */
if( pl_item )
emit activated( pl_item, false );
emit categoryActivated( pl_item, false );
}
PLSelItem * PLSelector::addItem (
......
......@@ -145,7 +145,7 @@ private slots:
void podcastRemove( PLSelItem* );
signals:
void activated( playlist_item_t *, bool );
void categoryActivated( playlist_item_t *, bool );
};
#endif
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