]> git.sesse.net Git - vlc/commitdiff
qt4: control_(Add/Remove/Exists) are not ready yet. (and btw, the previous commit...
authorRafaël Carré <funman@videolan.org>
Fri, 19 Oct 2007 10:34:46 +0000 (10:34 +0000)
committerRafaël Carré <funman@videolan.org>
Fri, 19 Oct 2007 10:34:46 +0000 (10:34 +0000)
modules/gui/qt4/components/simple_preferences.cpp

index 1ae8b82b0f2123bd2c0b132c8846239bbc8fb909..808a3582092df0a7002d90421c4fa0c451608085 100644 (file)
@@ -34,7 +34,6 @@
 #include "ui/sprefs_interface.h"
 
 #include <vlc_config_cat.h>
-#include "vlc_control.h"
 
 #include <QString>
 #include <QFont>
@@ -245,13 +244,13 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
                  volNormalizer );
          CONFIG_GENERIC( "audio-visual" , Module , NULL, visualisation);
 
-
+#if 0
         if( control_Exists( VLC_OBJECT( p_intf ), "audioscrobbler" ) )
             ui.lastfm->setCheckState( Qt::Checked );
         else
             ui.lastfm->setCheckState( Qt::Unchecked );
         CONNECT( ui.lastfm, stateChanged( int ), this , lastfm_Changed( int ) );
-
+#endif
          CONFIG_GENERIC( "lastfm-username", String, ui.lastfm_user_label,
                          lastfm_user_edit );
          CONFIG_GENERIC( "lastfm-password", String, ui.lastfm_pass_label,
@@ -390,8 +389,10 @@ void SPrefsPanel::clean()
 
 void SPrefsPanel::lastfm_Changed( int i_state )
 {
+#if 0
     if( i_state == Qt::Checked )
         control_Add( VLC_OBJECT( p_intf ), "audioscrobbler" );
     else if( i_state == Qt::Unchecked )
         control_Remove( VLC_OBJECT( p_intf ), "audioscrobbler" );
+#endif
 }