diff --git a/modules/gui/qt4/components/playlist/playlist.cpp b/modules/gui/qt4/components/playlist/playlist.cpp index e8ec88293c781d7faf4210db5d667c3fa84e2090..fd46068ff216be037fa3f74ff060694a0d81c277 100644 --- a/modules/gui/qt4/components/playlist/playlist.cpp +++ b/modules/gui/qt4/components/playlist/playlist.cpp @@ -94,8 +94,12 @@ PlaylistWidget::PlaylistWidget( intf_thread_t *_p_i, QWidget *_par ) setMinimumWidth( 400 ); PLModel *model = new PLModel( p_playlist, p_intf, p_root, this ); +#ifdef MEDIA_LIBRARY MLModel *mlmodel = new MLModel( p_intf, this ); mainView = new StandardPLPanel( this, p_intf, p_root, selector, model, mlmodel ); +#else + mainView = new StandardPLPanel( this, p_intf, p_root, selector, model, NULL ); +#endif /* Location Bar */ locationBar = new LocationBar( model ); diff --git a/modules/gui/qt4/components/playlist/standardpanel.cpp b/modules/gui/qt4/components/playlist/standardpanel.cpp index aab6879171e76c070e0f098a6301bb3615d17f14..6480025baccca8b007c5204ee1bc58f51033d6f4 100644 --- a/modules/gui/qt4/components/playlist/standardpanel.cpp +++ b/modules/gui/qt4/components/playlist/standardpanel.cpp @@ -195,12 +195,14 @@ void StandardPLPanel::searchDelayed( const QString& searchText ) /* This activated by the selector selection */ void StandardPLPanel::setRoot( playlist_item_t *p_item, bool b ) { +#ifdef MEDIA_LIBRARY if( b ) { msg_Dbg( p_intf, "Setting the SQL ML" ); currentView->setModel( mlmodel ); } else +#endif { msg_Dbg( p_intf, "Normal PL/ML or SD" ); if( currentView->model() != model ) @@ -354,6 +356,7 @@ void StandardPLPanel::createTreeView() void StandardPLPanel::changeModel( bool b_ml ) { +#ifdef MEDIA_LIBRARY VLCModel *mod; if( b_ml ) mod = mlmodel; @@ -361,6 +364,7 @@ void StandardPLPanel::changeModel( bool b_ml ) mod = model; if( currentView->model() != mod ) currentView->setModel( mod ); +#endif } void StandardPLPanel::showView( int i_view ) diff --git a/modules/gui/qt4/components/simple_preferences.cpp b/modules/gui/qt4/components/simple_preferences.cpp index f923866a5a4a47e015ea0dea36b02d48bd9fd409..fa13b1db8a51834bb478f35915cf3bff6f71ad2e 100644 --- a/modules/gui/qt4/components/simple_preferences.cpp +++ b/modules/gui/qt4/components/simple_preferences.cpp @@ -549,7 +549,9 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent, ui.assoButton->hide(); ui.assocLabel->hide(); #endif +#ifdef MEDIA_LIBRARY BUTTONACT( ui.sqlMLbtn, configML() ); +#endif /* interface */ char *psz_intf = config_GetPsz( p_intf, "intf" ); @@ -891,9 +893,11 @@ void SPrefsPanel::changeStyle( QString s_style ) void SPrefsPanel::configML() { +#ifdef MEDIA_LIBRARY MLConfDialog *mld = new MLConfDialog( this, p_intf ); mld->exec(); delete mld; +#endif } #ifdef WIN32