Commit 4091c41c authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen

qt4: preferences_widget: Cosmetics

parent 3b001b95
......@@ -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
......
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