Changeset 9383 in ntrip for trunk/BNC/qwt/qwt_plot_dict.cpp


Ignore:
Timestamp:
Mar 19, 2021, 9:15:03 AM (3 years ago)
Author:
stoecker
Message:

update to qwt verion 6.1.1 to fix build with newer Qt5

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/qwt/qwt_plot_dict.cpp

    r8127 r9383  
    138138{
    139139    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() )
    142142    {
    143143        QwtPlotItem *item = *it;
     
    181181
    182182    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 )
    184184    {
    185185        QwtPlotItem *item = *it;
Note: See TracChangeset for help on using the changeset viewer.