Changeset 2141 in ntrip for trunk/BNC/bncwindow.cpp


Ignore:
Timestamp:
Dec 31, 2009, 10:30:43 AM (14 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncwindow.cpp

    r2139 r2141  
    5555#include "bncfigure.h"
    5656#include "bncfigurelate.h"
     57#include "bncfigureppp.h"
    5758#include "bncversion.h"
    5859
     
    6768  _bncFigure = new bncFigure(this);
    6869  _bncFigureLate = new bncFigureLate(this);
     70  _bncFigurePPP = new bncFigurePPP(this);
    6971
    7072  int ww = QFontMetrics(this->font()).width('w');
     
    465467  _loggroup->addTab(_bncFigure,tr("Throughput"));
    466468  _loggroup->addTab(_bncFigureLate,tr("Latency"));
     469  _loggroup->addTab(_bncFigurePPP,tr("PPP"));
    467470
    468471  // Proxy Tab
     
    12191222        connect(thread, SIGNAL(newLatency(QByteArray, double)),
    12201223                _bncFigureLate, SLOT(slotNewLatency(QByteArray, double)));
     1224        disconnect(thread, SIGNAL(newPosition(const double*)),
     1225                   _bncFigurePPP, SLOT(slotNewPosition(const double*)));
     1226        connect(thread, SIGNAL(newPosition(const double*)),
     1227                _bncFigurePPP, SLOT(slotNewPosition(const double*)));
    12211228        break;
    12221229      }
Note: See TracChangeset for help on using the changeset viewer.