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: ...@@ -96,10 +96,10 @@ public:
protected: protected:
ConfigControl( vlc_object_t *_p_this, module_config_t *_p_conf ) : ConfigControl( vlc_object_t *_p_this, module_config_t *_p_conf ) :
p_this (_p_this ), p_item( _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; vlc_object_t *p_this;
module_config_t *p_item; module_config_t *p_item;
virtual void fillGrid( QGridLayout*, int ) {}; virtual void fillGrid( QGridLayout*, int ) {}
signals: signals:
void changed(); void changed();
#if 0 #if 0
...@@ -120,7 +120,7 @@ public: ...@@ -120,7 +120,7 @@ public:
virtual void doApply(); virtual void doApply();
protected: protected:
VIntConfigControl( vlc_object_t *a, module_config_t *b ) : VIntConfigControl( vlc_object_t *a, module_config_t *b ) :
ConfigControl(a,b) {}; ConfigControl(a,b) {}
}; };
class IntegerConfigControl : public VIntConfigControl class IntegerConfigControl : public VIntConfigControl
...@@ -305,7 +305,7 @@ public: ...@@ -305,7 +305,7 @@ public:
void doApply() Q_DECL_OVERRIDE; void doApply() Q_DECL_OVERRIDE;
protected: protected:
VStringConfigControl( vlc_object_t *a, module_config_t *b ) : VStringConfigControl( vlc_object_t *a, module_config_t *b ) :
ConfigControl(a,b) {}; ConfigControl(a,b) {}
}; };
class StringConfigControl : public VStringConfigControl 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