Changeset 2710 in ntrip for trunk/BNC/bncgetthread.cpp


Ignore:
Timestamp:
Nov 18, 2010, 12:44:38 PM (13 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncgetthread.cpp

    r2709 r2710  
    374374      // Delete old observations
    375375      // -----------------------
    376       QListIterator<p_obs> itOld(_decoder->_obsList);
     376      QListIterator<t_obs*> itOld(_decoder->_obsList);
    377377      while (itOld.hasNext()) {
    378378        delete itOld.next();
     
    439439      // Loop over all observations (observations output)
    440440      // ------------------------------------------------
    441       QListIterator<p_obs> it(_decoder->_obsList);
     441      QListIterator<t_obs*> it(_decoder->_obsList);
    442442      while (it.hasNext()) {
    443         p_obs obs = it.next();
     443        t_obs* obs = it.next();
    444444     
    445445        // Check observation epoch
Note: See TracChangeset for help on using the changeset viewer.