Changeset 5972 in ntrip
- Timestamp:
- Aug 17, 2014, 1:20:21 PM (10 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppMain.cpp
r5971 r5972 94 94 } 95 95 96 if (!_realTime) { 97 cout << "t_pppMain::stop RINEX" << endl; 98 return; 99 } 100 101 QListIterator<t_pppThread*> it(_pppThreads); 102 while (it.hasNext()) { 103 t_pppThread* pppThread = it.next(); 104 pppThread->exit(); 96 if (_realTime) { 97 QListIterator<t_pppThread*> it(_pppThreads); 98 while (it.hasNext()) { 99 t_pppThread* pppThread = it.next(); 100 pppThread->exit(); 101 } 105 102 } 106 103 _pppThreads.clear(); -
trunk/BNC/src/bnccore.cpp
r5946 r5972 881 881 void t_bncCore::stopPPP() { 882 882 _pppMain->stop(); 883 } 883 emit stopRinexPPP(); 884 } -
trunk/BNC/src/bnccore.h
r5954 r5972 95 95 void finishedRnxPPP(); 96 96 void mapSpeedSliderChanged(int); 97 void stopRinexPPP(); 97 98 98 99 private slots:
Note:
See TracChangeset
for help on using the changeset viewer.