Changeset 5579 in ntrip for trunk/BNC/src


Ignore:
Timestamp:
Nov 25, 2013, 6:16:41 PM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncpppclient.cpp

    r5578 r5579  
    540540  }
    541541  emit newMessage("bncPPPclient " + _staID + ": Provider Changed: " + mountPoint.toAscii() + "\n", true);
    542 }
     542
     543  delete _model;
     544  _model = new bncModel(this);
     545
     546  while (!_epoData.empty()) {
     547    delete _epoData.front();
     548    _epoData.pop();
     549  }
     550
     551  QMapIterator<QString, t_corr*> ic(_corr);
     552  while (ic.hasNext()) {
     553    ic.next();
     554    delete ic.value();
     555  }
     556  _corr.clear();
     557 
     558  QMapIterator<QString, t_bias*> ib(_bias);
     559  while (ib.hasNext()) {
     560    ib.next();
     561    delete ib.value();
     562  }
     563  _bias.clear();
     564}
Note: See TracChangeset for help on using the changeset viewer.