Changeset 5903 in ntrip


Ignore:
Timestamp:
Aug 9, 2014, 10:55:47 AM (10 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppThread.cpp

    r5901 r5903  
    6868////////////////////////////////////////////////////////////////////////////
    6969t_pppThread::~t_pppThread() {
     70  cout << "~t_pppThread" << endl;
    7071  delete _pppRun;
    7172}
  • trunk/BNC/src/bnccore.cpp

    r5902 r5903  
    879879////////////////////////////////////////////////////////////////////////////
    880880void t_bncCore::stopPPP() {
    881   emit quitPPP();
    882 }
     881  _pppMain->stop();
     882}
  • trunk/BNC/src/bnccore.h

    r5901 r5903  
    9292  void providerIDChanged(QString);
    9393  void newPosition(bncTime time, QVector<double> xx);
    94   void quitPPP();
    9594   
    9695 private slots:
  • trunk/BNC/src/bncgetthread.cpp

    r5900 r5903  
    410410        _staID  = _rawFile->staID();
    411411
     412        QCoreApplication::processEvents();
     413
    412414        if (data.isEmpty()) {
    413415          cout << "no more data" << endl;
    414416          BNC_CORE->stopCombination();
    415417          BNC_CORE->stopPPP();
    416           emit finished();
    417           this->deleteLater();
    418           return;
     418          ::exit(0);
    419419        }
    420420      }
Note: See TracChangeset for help on using the changeset viewer.