Changeset 6333 in ntrip


Ignore:
Timestamp:
Nov 24, 2014, 5:12:03 PM (9 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src
Files:
3 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncwindow.cpp

    r6332 r6333  
    17501750    enableStartStop();
    17511751  }
     1752  else if (!_sp3CompFileChooser->fileName().isEmpty()) {
     1753    _runningSp3Comp = true;
     1754    t_reqcEdit* reqcEdit = new t_reqcEdit(this);
     1755    connect(reqcEdit, SIGNAL(finished()), this, SLOT(slotPostProcessingFinished()));
     1756    reqcEdit->start();
     1757    enableStartStop();
     1758  }
    17521759  else {
    17531760    startRealTime();
     
    24202427void bncWindow::slotPostProcessingFinished() {
    24212428  delete _caster; _caster = 0; BNC_CORE->setCaster(0);
    2422   _runningPPP  = false;
    2423   _runningEdit = false;
    2424   _runningQC   = false;
     2429  _runningPPP     = false;
     2430  _runningEdit    = false;
     2431  _runningQC      = false;
     2432  _runningSp3Comp = false;
    24252433  _actStart->setText(tr("Sta&rt"));
    24262434  enableStartStop();
  • trunk/BNC/src/src.pri

    r6152 r6333  
    6565          rinex/graphwin.h         rinex/polarplot.h                  \
    6666          rinex/availplot.h        rinex/eleplot.h                    \
    67           rinex/dopplot.h
     67          rinex/dopplot.h          orbComp/sp3Comp.h
    6868
    6969HEADERS       += serial/qextserialbase.h serial/qextserialport.h
     
    100100          rinex/graphwin.cpp       rinex/polarplot.cpp                \
    101101          rinex/availplot.cpp      rinex/eleplot.cpp                  \
    102           rinex/dopplot.cpp
     102          rinex/dopplot.cpp        orbComp/sp3Comp.cpp
    103103
    104104SOURCES       += serial/qextserialbase.cpp serial/qextserialport.cpp
Note: See TracChangeset for help on using the changeset viewer.