summaryrefslogtreecommitdiffstats
path: root/src/datavisualization/engine/q3dbars.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/datavisualization/engine/q3dbars.cpp')
-rw-r--r--src/datavisualization/engine/q3dbars.cpp15
1 files changed, 5 insertions, 10 deletions
diff --git a/src/datavisualization/engine/q3dbars.cpp b/src/datavisualization/engine/q3dbars.cpp
index 6fef5be4..00eb145c 100644
--- a/src/datavisualization/engine/q3dbars.cpp
+++ b/src/datavisualization/engine/q3dbars.cpp
@@ -323,23 +323,18 @@ void Q3DBars::setBarType(QDataVis::MeshStyle style, bool smooth)
/*!
* \property Q3DBars::theme
*
- * A predefined \a theme from \c QDataVis::Theme. It is preset to \c QDataVis::ThemeQt by
- * default. Theme affects label colors, text color, background color, window color and
- * grid color. Lighting is also adjusted by themes.
+ * A user-defined theme.
*
- * \sa setBarColor()
- *
- * \preliminary
+ * TODO: Add docs.
*/
-
-void Q3DBars::setTheme(QDataVis::Theme theme)
+void Q3DBars::setTheme(Q3DTheme *theme)
{
d_ptr->m_shared->setTheme(theme);
}
-QDataVis::Theme Q3DBars::theme() const
+Q3DTheme *Q3DBars::theme() const
{
- return d_ptr->m_shared->theme().theme();
+ return d_ptr->m_shared->theme();
}
/*!