]> git.sesse.net Git - vlc/commitdiff
Qt: Kill more warnings.
authorJean-Baptiste Kempf <jb@videolan.org>
Wed, 14 Jan 2009 17:20:16 +0000 (18:20 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Fri, 16 Jan 2009 15:33:22 +0000 (16:33 +0100)
modules/gui/qt4/components/complete_preferences.cpp
modules/gui/qt4/components/controller_widget.cpp
modules/gui/qt4/components/extended_panels.cpp
modules/gui/qt4/components/extended_panels.hpp
modules/gui/qt4/components/open_panels.cpp
modules/gui/qt4/components/open_panels.hpp
modules/gui/qt4/dialogs/vlm.cpp
modules/gui/qt4/main_interface.cpp
modules/gui/qt4/qt4.cpp

index 9120ff69d4a86a039e24e21ee34b086429cf30f6..1b520becd49bbc5998001a31cfc011e85f11d042 100644 (file)
@@ -201,7 +201,9 @@ PrefsTree::PrefsTree( intf_thread_t *_p_intf, QWidget *_parent ) :
         // Main module excluded
         if( module_is_main( p_module) ) continue;
 
-        unsigned i_subcategory = 0, i_category = 0, confsize;
+        unsigned  confsize;
+        int i_subcategory = 0, i_category = 0;
+
         bool b_options = false;
         module_config_t *const p_config = module_config_get (p_module, &confsize);
 
index 688bb3d921a35155fd14adf9f85712a600e930a1..01d8e4ea31e22d8a8d99f45c7ac520d37004ed68 100644 (file)
@@ -38,7 +38,7 @@
 
 SoundWidget::SoundWidget( QWidget *_parent, intf_thread_t * _p_intf,
                           bool b_shiny )
-                         : b_my_volume( false ), QWidget( _parent )
+                         : QWidget( _parent ), b_my_volume( false )
 {
     p_intf = _p_intf;
     QHBoxLayout *layout = new QHBoxLayout( this );
@@ -159,14 +159,20 @@ void AtoB_Button::setIcons( bool timeA, bool timeB )
 
 bool VolumeClickHandler::eventFilter( QObject *obj, QEvent *e )
 {
+    VLC_UNUSED( obj );
     if (e->type() == QEvent::MouseButtonPress  )
     {
         aout_VolumeMute( p_intf, NULL );
         audio_volume_t i_volume;
         aout_VolumeGet( p_intf, &i_volume );
 //        m->updateVolume( i_volume *  VOLUME_MAX / (AOUT_VOLUME_MAX/2) );
+        e->accept();
         return true;
     }
-    return false;
+    else
+    {
+        e->ignore();
+        return false;
+    }
 }
 
index e85b948d761b11cf44381569ad6fa26171ab0c63..93a73bd1b8a37ef6375f71ade67e8cf21d991322 100644 (file)
@@ -39,6 +39,7 @@
 #include "qt4.hpp"
 #include "input_manager.hpp"
 
+#include "../../audio_filter/equalizer_presets.h"
 #include <vlc_aout.h>
 #include <vlc_intf_strings.h>
 #include <vlc_vout.h>
index 8951ab66c58cc1e1e0353f3391970edcac66a353..3d498c7dca0dc79ff6c277e01ea4611e6e3e1f75 100644 (file)
 #include "ui/equalizer.h"
 #include "ui/video_effects.h"
 #include "ui/v4l2.h"
-#include "../../audio_filter/equalizer_presets.h"
 
 #include <QTabWidget>
 
-#define BANDS EQZ_BANDS_MAX
+#define BANDS 10
 #define NUM_SP_CTRL 5
 
 class QSignalMapper;
index a183712c60933bf662967da72487916d8004ffb9..1ea3c585a8ae18d8ae4591feebd7d42f748704f8 100644 (file)
@@ -49,6 +49,9 @@
 
 #define I_DEVICE_TOOLTIP N_("Select the device or the VIDEO_TS directory")
 
+static const char *psz_devModule[] = { "v4l", "v4l2", "pvr", "dvb", "bda",
+                                       "dshow", "screen", "jack" };
+
 /**************************************************************************
  * Open Files and subtitles                                               *
  **************************************************************************/
index 6b34a1419fbce7f2c5ab265966bfe717a80c04e0..deaf898b5d8967943486d735d38041b3fe96514f 100644 (file)
@@ -71,9 +71,6 @@ enum
     JACK_DEVICE
 };
 
-static const char *psz_devModule[] = { "v4l", "v4l2", "pvr", "dvb", "bda",
-                                       "dshow", "screen", "jack" };
-
 class QWidget;
 class QLineEdit;
 class QString;
index a297072e0ac306ba580cacdeb0f4716ec66e40de..dc3b4c940318a6324a0a4037f5cc2e4b50d2946d 100644 (file)
@@ -816,12 +816,20 @@ void VLMWrapper::EditSchedule( const QString name, const QString input,
         _schetime.toString( "hh:mm:ss" ) + "\"";
     vlm_ExecuteCommand( p_vlm, qtu( command ), &message );
     vlm_MessageDelete( message );
+
     if( _scherepeatnumber > 0 )
     {
        command = "setup \"" + name + "\" repeat \"" + _scherepeatnumber + "\"";
        vlm_ExecuteCommand( p_vlm, qtu( command ), &message );
        vlm_MessageDelete( message );
     }
+
+    if( _repeatDays > 0 )
+    {
+       command = "setup \"" + name + "\" period \"" + _repeatDays + "\"";
+       vlm_ExecuteCommand( p_vlm, qtu( command ), &message );
+       vlm_MessageDelete( message );
+    }
 }
 
 
index fd02b67c837751ec58b252e189011bb3750d4a1d..fcbde2a200b7125e457f9d90cf2996504015d7a7 100644 (file)
@@ -640,6 +640,7 @@ void MainInterface::releaseVideoSlot( void )
 /* Call from WindowControl function */
 int MainInterface::controlVideo( void *p_window, int i_query, va_list args )
 {
+    VLC_UNUSED( p_window ); //FIXME remove this param
     int i_ret = VLC_SUCCESS;
     switch( i_query )
     {
index f1216da1a226bc2d677d19811350a6f30adb62ca..d36de7908c3bf49c32272ee2e0a0aa63efd1e135 100644 (file)
@@ -471,23 +471,11 @@ static void *Thread( void *obj )
 static void ShowDialog( intf_thread_t *p_intf, int i_dialog_event, int i_arg,
                         intf_dialog_args_t *p_arg )
 {
+    VLC_UNUSED( p_intf );
     DialogEvent *event = new DialogEvent( i_dialog_event, i_arg, p_arg );
     QApplication::postEvent( THEDP, static_cast<QEvent*>(event) );
 }
 
-/*****************************************************************************
- * PopupMenuCB: callback to show the popupmenu.
- *  We don't show the menu directly here because we don't want the
- *  caller to block for a too long time.
- *****************************************************************************/
-static int PopupMenuCB( vlc_object_t *p_this, const char *psz_variable,
-                        vlc_value_t old_val, vlc_value_t new_val, void *param )
-{
-    intf_thread_t *p_intf = (intf_thread_t *)param;
-    ShowDialog( p_intf, INTF_DIALOG_POPUPMENU, new_val.b_bool, 0 );
-    return VLC_SUCCESS;
-}
-
 /**
  * Video output window provider
  */