Changeset 6335 in ntrip
- Timestamp:
- Nov 24, 2014, 5:19:17 PM (10 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncwindow.cpp
r6333 r6335 66 66 #include "rinex/reqcedit.h" 67 67 #include "rinex/reqcanalyze.h" 68 #include "orbComp/sp3Comp.h" 68 69 #ifdef QT_WEBKIT 69 70 # include "map/bncmapwin.h" … … 1752 1753 else if (!_sp3CompFileChooser->fileName().isEmpty()) { 1753 1754 _runningSp3Comp = true; 1754 t_ reqcEdit* reqcEdit = new t_reqcEdit(this);1755 connect( reqcEdit, SIGNAL(finished()), this, SLOT(slotPostProcessingFinished()));1756 reqcEdit->start();1755 t_sp3Comp* sp3Comp = new t_sp3Comp(this); 1756 connect(sp3Comp, SIGNAL(finished()), this, SLOT(slotPostProcessingFinished())); 1757 sp3Comp->start(); 1757 1758 enableStartStop(); 1758 1759 } -
trunk/BNC/src/orbComp/sp3Comp.cpp
r6333 r6335 73 73 // } 74 74 75 qDebug() << "sp3Comp::run"; 76 75 77 // Exit (thread) 76 78 // -------------
Note:
See TracChangeset
for help on using the changeset viewer.