[vlc-commits] Qt: ConfigControl: missing Q_OBJECT

Francois Cartegnie git at videolan.org
Tue Dec 25 21:38:07 CET 2012


vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Tue Dec 25 21:32:18 2012 +0100| [885af34477a2fe033e96b3475cd6b0eee52ad65e] | committer: Francois Cartegnie

Qt: ConfigControl: missing Q_OBJECT

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=885af34477a2fe033e96b3475cd6b0eee52ad65e
---

 modules/gui/qt4/components/preferences_widgets.hpp |    5 +++++
 1 file changed, 5 insertions(+)

diff --git a/modules/gui/qt4/components/preferences_widgets.hpp b/modules/gui/qt4/components/preferences_widgets.hpp
index dee0c78..ae9fee1 100644
--- a/modules/gui/qt4/components/preferences_widgets.hpp
+++ b/modules/gui/qt4/components/preferences_widgets.hpp
@@ -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 );



More information about the vlc-commits mailing list