Commit d73cc541 authored by Francois Cartegnie's avatar Francois Cartegnie

Qt: preferences_widgets: fix vtable entries for show()/hide()

parent e4a2f994
......@@ -139,8 +139,8 @@ public:
IntegerConfigControl( vlc_object_t *, module_config_t *,
QLabel*, QSlider* );
virtual int getValue() const;
virtual void show() const { spin->show(); if( label ) label->show(); }
virtual void hide() const { spin->hide(); if( label ) label->hide(); }
virtual void show() { spin->show(); if( label ) label->show(); }
virtual void hide() { spin->hide(); if( label ) label->hide(); }
protected:
QSpinBox *spin;
......
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