summaryrefslogtreecommitdiffstats
path: root/examples/charts/dynamicspline/chart.h
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/dynamicspline/chart.h
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/dynamicspline/chart.h')
-rw-r--r--examples/charts/dynamicspline/chart.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/charts/dynamicspline/chart.h b/examples/charts/dynamicspline/chart.h
index 66a0ab8c..954a0946 100644
--- a/examples/charts/dynamicspline/chart.h
+++ b/examples/charts/dynamicspline/chart.h
@@ -55,7 +55,8 @@ private:
QTimer m_timer;
QSplineSeries *m_series;
QStringList m_titles;
- QValueAxis *m_axis;
+ QValueAxis *m_axisX;
+ QValueAxis *m_axisY;
qreal m_step;
qreal m_x;
qreal m_y;