summaryrefslogtreecommitdiffstats
path: root/examples/charts/boxplotchart
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/boxplotchart
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/boxplotchart')
-rw-r--r--examples/charts/boxplotchart/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/charts/boxplotchart/main.cpp b/examples/charts/boxplotchart/main.cpp
index 2bd45171..671b34cc 100644
--- a/examples/charts/boxplotchart/main.cpp
+++ b/examples/charts/boxplotchart/main.cpp
@@ -88,8 +88,8 @@ int main(int argc, char *argv[])
//! [5]
chart->createDefaultAxes();
- chart->axisY()->setMin(15.0);
- chart->axisY()->setMax(34.0);
+ chart->axes(Qt::Vertical).first()->setMin(15.0);
+ chart->axes(Qt::Horizontal).first()->setMax(34.0);
//! [5]
//! [6]