summaryrefslogtreecommitdiffstats
path: root/src/charts/xychart
diff options
context:
space:
mode:
authorMarc Mutz <marc.mutz@kdab.com>2019-07-03 22:08:41 +0200
committerMarc Mutz <marc.mutz@kdab.com>2019-07-04 10:16:06 +0200
commit2372db24d1b5ed482b6c0be7af2e5f6aba75cd36 (patch)
tree4c522f6130f885eede56e749d738a35e1954c650 /src/charts/xychart
parent248fff483ae1597c62a93edf91841b84b363739b (diff)
Eradicate Java-style iterators and mark the module free of them
... and of QLinkedList. Unfortunately, the module contains more than 330 uses of Q_FOREACH, even though, according to my sources, its use was banned in Qt implementation from the get-go. So QT_NO_FOREACH is currently not an option. Java-style iterators are going to be deprecated, or at the very least banned from use in Qt code. Ditto QLinkedList. Change-Id: I505e3472b708fc18a3254dc742e46d14d095fcc1 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'src/charts/xychart')
-rw-r--r--src/charts/xychart/glxyseriesdata_p.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/charts/xychart/glxyseriesdata_p.h b/src/charts/xychart/glxyseriesdata_p.h
index 006a810c..2db3e490 100644
--- a/src/charts/xychart/glxyseriesdata_p.h
+++ b/src/charts/xychart/glxyseriesdata_p.h
@@ -77,7 +77,6 @@ public:
};
typedef QMap<const QXYSeries *, GLXYSeriesData *> GLXYDataMap;
-typedef QMapIterator<const QXYSeries *, GLXYSeriesData *> GLXYDataMapIterator;
class Q_CHARTS_PRIVATE_EXPORT GLXYSeriesDataManager : public QObject
{