Changeset 9383 in ntrip for trunk/BNC/qwt/qwt_plot_dict.cpp
- Timestamp:
- Mar 19, 2021, 9:15:03 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/qwt/qwt_plot_dict.cpp
r8127 r9383 138 138 { 139 139 PrivateData::ItemList list = d_data->itemList; 140 QwtPlotItemIterator it = list. begin();141 while ( it != list. end() )140 QwtPlotItemIterator it = list.constBegin(); 141 while ( it != list.constEnd() ) 142 142 { 143 143 QwtPlotItem *item = *it; … … 181 181 182 182 PrivateData::ItemList list = d_data->itemList; 183 for ( QwtPlotItemIterator it = list. begin(); it != list.end(); ++it )183 for ( QwtPlotItemIterator it = list.constBegin(); it != list.constEnd(); ++it ) 184 184 { 185 185 QwtPlotItem *item = *it;
Note:
See TracChangeset
for help on using the changeset viewer.