Commit 885af344 authored by Francois Cartegnie's avatar Francois Cartegnie

Qt: ConfigControl: missing Q_OBJECT

parent 0d3e1643
......@@ -148,6 +148,7 @@ private:
class IntegerRangeConfigControl : public IntegerConfigControl
{
Q_OBJECT
public:
IntegerRangeConfigControl( vlc_object_t *, module_config_t *, QWidget * );
IntegerRangeConfigControl( vlc_object_t *, module_config_t *,
......@@ -160,6 +161,7 @@ private:
class IntegerRangeSliderConfigControl : public VIntConfigControl
{
Q_OBJECT
public:
IntegerRangeSliderConfigControl( vlc_object_t *, module_config_t *,
QLabel *, QSlider * );
......@@ -200,6 +202,7 @@ private:
class BoolConfigControl : public VIntConfigControl
{
Q_OBJECT
public:
BoolConfigControl( vlc_object_t *, module_config_t *, QWidget * );
BoolConfigControl( vlc_object_t *, module_config_t *,
......@@ -385,6 +388,7 @@ protected:
class ModuleConfigControl : public VStringConfigControl
{
Q_OBJECT
public:
ModuleConfigControl( vlc_object_t *, module_config_t *, QWidget * );
ModuleConfigControl( vlc_object_t *, module_config_t *, QLabel *,
......@@ -467,6 +471,7 @@ struct ModuleCheckBox {
class ModuleListConfigControl : public ConfigControl
{
Q_OBJECT
public:
StringConfigControl( vlc_object_t *, module_config_t *, QWidget *, bool
bycat );
......
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