Changeset 5941 in ntrip
- Timestamp:
- Aug 16, 2014, 9:42:15 AM (11 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppRun.cpp
r5940 r5941 98 98 _maxSpeed = 0; 99 99 _speed = 0; 100 connect(this, SIGNAL(progressRnxPPP(int)), BNC_CORE, SIGNAL(progressRnxPPP(int))); 101 connect(this, SIGNAL(finishedRnxPPP()), BNC_CORE, SIGNAL(finishedRnxPPP())); 100 102 } 101 103 } -
trunk/BNC/src/bnccore.h
r5905 r5941 92 92 void providerIDChanged(QString); 93 93 void newPosition(bncTime time, QVector<double> xx); 94 void progressRnxPPP(int); 95 void finishedRnxPPP(); 94 96 95 97 private slots: -
trunk/BNC/src/bncwindow.cpp
r5939 r5941 90 90 _bncFigureLate = new bncFigureLate(this); 91 91 _bncFigurePPP = new bncFigurePPP(this); 92 92 93 connect(BNC_CORE, SIGNAL(newPosition(bncTime, QVector<double>)), 93 94 _bncFigurePPP, SLOT(slotNewPosition(bncTime, QVector<double>))); 95 96 connect(BNC_CORE, SIGNAL(progressRnxPPP(int)), this, SLOT(slotPostProgress(int))); 97 94 98 _runningRealTime = false; 95 99 _runningPostProcessingReqc = false;
Note:
See TracChangeset
for help on using the changeset viewer.