summaryrefslogtreecommitdiffstats
path: root/examples/spectrum/spectrumapp
diff options
context:
space:
mode:
authorTomi Korpipää <tomi.korpipaa@digia.com>2013-06-13 08:42:31 +0300
committerTomi Korpipää <tomi.korpipaa@digia.com>2013-06-13 09:48:39 +0300
commitc89c18631f9d8770eb5db16a86043e6079cefaf3 (patch)
tree7481218166f37726106dadd074fab1ead9336f6a /examples/spectrum/spectrumapp
parentd557920485f0cc1094908f72ce3fffcd55acd941 (diff)
Removed invokables from C++ api
Added missing properties to declarativebars. Renamed boolean properties to conform with naming conventions. Change-Id: Ide93c2a456713e1e77ba0a01ccdc110d00377e83 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com> Reviewed-by: Pasi Keränen <pasi.keranen@digia.com>
Diffstat (limited to 'examples/spectrum/spectrumapp')
-rw-r--r--examples/spectrum/spectrumapp/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/spectrum/spectrumapp/main.cpp b/examples/spectrum/spectrumapp/main.cpp
index 4296a347..9865802a 100644
--- a/examples/spectrum/spectrumapp/main.cpp
+++ b/examples/spectrum/spectrumapp/main.cpp
@@ -87,7 +87,7 @@ MainApp::MainApp(Q3DBars *window)
{
m_chart->setupSampleSpace(SpectrumNumBands, SpectrumNumBands * 2);
// Disable grid
- m_chart->setGridEnabled(false);
+ m_chart->setGridVisible(false);
// Disable auto-scaling of height by defining tick count and step, even though we don't draw grid
// By setting count to 1 and step to the max we can get, we lock the scale of the bars.
m_chart->setTickCount(1, 1.0f);