summaryrefslogtreecommitdiffstats
path: root/src/datavisualization/theme
diff options
context:
space:
mode:
authorMiikka Heikkinen <miikka.heikkinen@digia.com>2014-03-14 15:22:02 +0200
committerMiikka Heikkinen <miikka.heikkinen@digia.com>2014-03-17 08:07:12 +0200
commite0da339a9d1726cf49675537895e737b5001f31c (patch)
treee44d291802129b4e974f1835e8b3272fa9086ff0 /src/datavisualization/theme
parent3aea033f251a98e66f5ab530805fb412b202b4d7 (diff)
Add proper scoping to signals with enum parameters
According to customer feedback, the lack of proper scoping makes it impossible to use the traditional style SIGNAL() macro when making connections. Change-Id: I3fbead5400bbd8b5fad62e4facecc6610c36c9a6 Reviewed-by: Tomi Korpipää <tomi.korpipaa@digia.com>
Diffstat (limited to 'src/datavisualization/theme')
-rw-r--r--src/datavisualization/theme/q3dtheme.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/datavisualization/theme/q3dtheme.h b/src/datavisualization/theme/q3dtheme.h
index 43278c79..3a82afea 100644
--- a/src/datavisualization/theme/q3dtheme.h
+++ b/src/datavisualization/theme/q3dtheme.h
@@ -148,7 +148,7 @@ public:
ColorStyle colorStyle() const;
signals:
- void typeChanged(Theme themeType);
+ void typeChanged(Q3DTheme::Theme themeType);
void baseColorsChanged(const QList<QColor> &colors);
void backgroundColorChanged(const QColor &color);
void windowColorChanged(const QColor &color);
@@ -169,7 +169,7 @@ signals:
void backgroundEnabledChanged(bool enabled);
void gridEnabledChanged(bool enabled);
void labelBackgroundEnabledChanged(bool enabled);
- void colorStyleChanged(ColorStyle style);
+ void colorStyleChanged(Q3DTheme::ColorStyle style);
protected:
explicit Q3DTheme(Q3DThemePrivate *d, Theme themeType, QObject *parent = 0);