summaryrefslogtreecommitdiffstats
path: root/src/datavisualization/engine/q3dscatter.cpp
diff options
context:
space:
mode:
authorTomi Korpipää <tomi.korpipaa@digia.com>2013-10-02 10:26:46 +0300
committerTomi Korpipää <tomi.korpipaa@digia.com>2013-10-02 10:27:15 +0300
commit23052d3f50764e3d6a0def345d09c9a78d38857a (patch)
tree7fe8e3c3abf4e44ea3f62dc3022b0119ab966303 /src/datavisualization/engine/q3dscatter.cpp
parentdefd066b46329783c10ace4e67fddc4a2a65bf4c (diff)
Refactored ColorTheme -> Theme
Task-number: QTRD-2362 Change-Id: I042e57a2307f7465588ff3475a659e0483a45da8 Change-Id: I042e57a2307f7465588ff3475a659e0483a45da8 Reviewed-by: Tomi Korpipää <tomi.korpipaa@digia.com>
Diffstat (limited to 'src/datavisualization/engine/q3dscatter.cpp')
-rw-r--r--src/datavisualization/engine/q3dscatter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/datavisualization/engine/q3dscatter.cpp b/src/datavisualization/engine/q3dscatter.cpp
index 816849fe..c7359c55 100644
--- a/src/datavisualization/engine/q3dscatter.cpp
+++ b/src/datavisualization/engine/q3dscatter.cpp
@@ -214,7 +214,7 @@ void Q3DScatter::setCameraPosition(qreal horizontal, qreal vertical, int distanc
}
/*!
- * Sets a predefined \a theme from \c QDataVis::ColorTheme. It is preset to \c QDataVis::ThemeQt by
+ * Sets a predefined \a theme from \c QDataVis::Theme. It is preset to \c QDataVis::ThemeQt by
* default. Theme affects bar colors, label colors, text color, background color, window color and
* grid color. Lighting is also adjusted by themes.
*
@@ -222,9 +222,9 @@ void Q3DScatter::setCameraPosition(qreal horizontal, qreal vertical, int distanc
*
* \warning This method is subject to change.
*/
-void Q3DScatter::setTheme(QDataVis::ColorTheme theme)
+void Q3DScatter::setTheme(QDataVis::Theme theme)
{
- d_ptr->m_shared->setColorTheme(theme);
+ d_ptr->m_shared->setTheme(theme);
}
/*!