Changeset 5732 in ntrip for trunk/BNC/src/PPP


Ignore:
Timestamp:
Jul 31, 2014, 4:28:21 PM (10 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src/PPP
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppThread.cpp

    r5731 r5732  
    9494            this, SLOT(slotNewEphGalileo(galileoephemeris)));
    9595
    96     connect(BNC_CORE, SIGNAL(newCorrections(QList<QString>)),
    97             this, SLOT(slotNewCorrections(QList<QString>)));
     96    connect(BNC_CORE, SIGNAL(newCorrections(QStringList)),
     97            this, SLOT(slotNewCorrections(QStringList)));
    9898  }
    9999}
     
    128128//
    129129////////////////////////////////////////////////////////////////////////////
    130 void t_pppRun::slotNewCorrections(QList<QString> corrList) {
     130void t_pppRun::slotNewCorrections(QStringList corrList) {
    131131  QMutexLocker locker(&_mutex);
    132132  cout << _opt._roverName << " slotNewCorrections" << endl;
  • trunk/BNC/src/PPP/pppThread.h

    r5731 r5732  
    2020  void slotNewEphGlonass(glonassephemeris gloeph);
    2121  void slotNewEphGalileo(galileoephemeris galeph);
    22   void slotNewCorrections(QList<QString> corrList);
     22  void slotNewCorrections(QStringList corrList);
    2323  void slotNewObs(QByteArray staID, QList<t_obs> obsList);
    2424
Note: See TracChangeset for help on using the changeset viewer.