Changeset 5942 in ntrip for trunk/BNC/src/PPP
- Timestamp:
- Aug 16, 2014, 9:49:49 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppRun.cpp
r5941 r5942 66 66 BNC_CORE, SLOT(slotMessage(const QByteArray,bool))); 67 67 68 connect(this, SIGNAL(newPosition(bncTime, QVector<double>)),69 BNC_CORE, SIGNAL(newPosition(bncTime, QVector<double>)));70 71 68 for (unsigned iPrn = 0; iPrn <= t_prn::MAXPRN; iPrn++) { 72 69 _lastOrbCorrIOD[iPrn] = -1; … … 77 74 78 75 if (_opt->_realTime) { 76 connect(this, SIGNAL(newPosition(bncTime, QVector<double>)), 77 BNC_CORE, SIGNAL(newPosition(bncTime, QVector<double>))); 78 79 79 connect(BNC_CORE->caster(), SIGNAL(newObs(QByteArray, QList<t_obs>)), 80 80 this, SLOT(slotNewObs(QByteArray, QList<t_obs>))); … … 230 230 delete _epoData.front(); _epoData.pop_front(); 231 231 232 emit newMessage(QByteArray(output._log.c_str()), true); 232 bool showOnScreen = _opt->_realTime; 233 emit newMessage(QByteArray(output._log.c_str()), showOnScreen); 233 234 } 234 235 }
Note:
See TracChangeset
for help on using the changeset viewer.