summaryrefslogtreecommitdiffstats
path: root/examples/charts/splinechart
diff options
context:
space:
mode:
authorMichal Klocek <michal.klocek@qt.io>2018-04-24 12:32:17 +0200
committerMichal Klocek <michal.klocek@qt.io>2018-04-30 13:59:23 +0000
commitd3ea72e28ca82640e50900d42bf0c9ee76aa7f95 (patch)
tree1d72276672b2ef7b1ac76e77283f31d45530cb3c /examples/charts/splinechart
parent8b4ad5a108b53e6964815856b37cf004099ce505 (diff)
Add proper 'deprecated' warnings
Use Q_DECL_DEPRECATED to mark deprecated API. Fix examples to do not use deprecated functions. These functions were 'marked' as deprecated when multiple axes were introduced. Moreover, axis X/Y is an ambiguous term and not necessary mean Horizontal/Vertical axis. These deprecated methods also create an issue when given series should be attached to several Horizonal/ Vertical axes and calling them can cause unwanted results. Change-Id: I639e1b964240b80c2b3b93b74b061da324bca1ff Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io>
Diffstat (limited to 'examples/charts/splinechart')
-rw-r--r--examples/charts/splinechart/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/charts/splinechart/main.cpp b/examples/charts/splinechart/main.cpp
index db3a9324..b1fbb232 100644
--- a/examples/charts/splinechart/main.cpp
+++ b/examples/charts/splinechart/main.cpp
@@ -58,7 +58,7 @@ int main(int argc, char *argv[])
chart->addSeries(series);
chart->setTitle("Simple spline chart example");
chart->createDefaultAxes();
- chart->axisY()->setRange(0, 10);
+ chart->axes(Qt::Vertical).first()->setRange(0, 10);
//![3]
//![4]