Commit a35dfea7 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt4 - fix the artSet removal commit.

parent 87fe9845
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
#include "components/playlist/panels.hpp" #include "components/playlist/panels.hpp"
#include "components/playlist/selector.hpp" #include "components/playlist/selector.hpp"
#include "components/playlist/playlist.hpp" #include "components/playlist/playlist.hpp"
#include "input_manager.hpp" /* art */
#include <QSettings> #include <QSettings>
#include <QLabel> #include <QLabel>
...@@ -68,8 +69,7 @@ PlaylistWidget::PlaylistWidget( intf_thread_t *_p_i, QSettings *settings, QWidge ...@@ -68,8 +69,7 @@ PlaylistWidget::PlaylistWidget( intf_thread_t *_p_i, QSettings *settings, QWidge
/* Connects */ /* Connects */
CONNECT( selector, activated( int ), rightPanel, setRoot( int ) ); CONNECT( selector, activated( int ), rightPanel, setRoot( int ) );
CONNECT( qobject_cast<StandardPLPanel *>( rightPanel )->model, CONNECT( THEMIM->getIM(), artChanged( QString ) , this, setArt( QString ) );
artSet( QString ) , this, setArt( QString ) );
/* Forward removal requests from the selector to the main panel */ /* Forward removal requests from the selector to the main panel */
CONNECT( qobject_cast<PLSelector *>( selector )->model, CONNECT( qobject_cast<PLSelector *>( selector )->model,
shouldRemove( int ), shouldRemove( int ),
......
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