Changeset 2023 in ntrip


Ignore:
Timestamp:
Nov 25, 2009, 6:09:08 PM (14 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncpppthread.cpp

    r2022 r2023  
    6767    delete it.value();
    6868  }
     69  QMapIterator<QString, t_corr*> ic(_corr);
     70  while (ic.hasNext()) {
     71    ic.next();
     72    delete ic.value();
     73  }
    6974}
    7075
     
    105110    p_obs          pp  = it.next();
    106111    t_obsInternal* obs = &(pp->_o);
    107     QString staID = QString(obs->StatID);
     112    QByteArray staID = QByteArray(obs->StatID);
    108113    cout << "DATA " << obs->GPSWeek << " " << obs->GPSWeeks << " "
    109          << staID.toAscii().data() << " "
     114         << staID.data() << " "
    110115         << obs->satSys << obs->satNum << endl;
    111116  }
Note: See TracChangeset for help on using the changeset viewer.