[vlc-commits] qt4: preferences_widget: Cosmetics
Hugo Beauzée-Luyssen
git at videolan.org
Sun Nov 1 13:49:55 CET 2015
vlc | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Sun Nov 1 13:01:34 2015 +0100| [4091c41c561ae4956507672c13ce398d72bcd22f] | committer: Hugo Beauzée-Luyssen
qt4: preferences_widget: Cosmetics
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4091c41c561ae4956507672c13ce398d72bcd22f
---
modules/gui/qt4/components/preferences_widgets.hpp | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/modules/gui/qt4/components/preferences_widgets.hpp b/modules/gui/qt4/components/preferences_widgets.hpp
index d5c5814..dcbee20 100644
--- a/modules/gui/qt4/components/preferences_widgets.hpp
+++ b/modules/gui/qt4/components/preferences_widgets.hpp
@@ -96,10 +96,10 @@ public:
protected:
ConfigControl( vlc_object_t *_p_this, module_config_t *_p_conf ) :
p_this (_p_this ), p_item( _p_conf ) {}
- virtual void changeVisibility( bool b ) { Q_UNUSED(b); };
+ virtual void changeVisibility( bool ) { }
vlc_object_t *p_this;
module_config_t *p_item;
- virtual void fillGrid( QGridLayout*, int ) {};
+ virtual void fillGrid( QGridLayout*, int ) {}
signals:
void changed();
#if 0
@@ -120,7 +120,7 @@ public:
virtual void doApply();
protected:
VIntConfigControl( vlc_object_t *a, module_config_t *b ) :
- ConfigControl(a,b) {};
+ ConfigControl(a,b) {}
};
class IntegerConfigControl : public VIntConfigControl
@@ -305,7 +305,7 @@ public:
void doApply() Q_DECL_OVERRIDE;
protected:
VStringConfigControl( vlc_object_t *a, module_config_t *b ) :
- ConfigControl(a,b) {};
+ ConfigControl(a,b) {}
};
class StringConfigControl : public VStringConfigControl
More information about the vlc-commits
mailing list