Changeset 824 in ntrip


Ignore:
Timestamp:
Apr 15, 2008, 9:38:53 AM (16 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNS/bns.cpp

    r823 r824  
    3232  // ---------------------------------------
    3333  _bnseph = new t_bnseph(parent);
    34 
    35   connect(_bnseph, SIGNAL(newEph(gpsEph*)),
    36           this, SLOT(slotNewEph(gpsEph*)), Qt::DirectConnection);
    37   connect(_bnseph, SIGNAL(newMessage(QByteArray)),
    38           this, SLOT(slotMessage(const QByteArray)), Qt::DirectConnection);
    39   connect(_bnseph, SIGNAL(error(QByteArray)),
    40           this, SLOT(slotError(const QByteArray)), Qt::DirectConnection);
    4134
    4235  // Server listening for rtnet results
     
    4639  _clkServer = new QTcpServer;
    4740  _clkServer->listen(QHostAddress::Any, settings.value("clkPort").toInt());
    48   connect(_clkServer, SIGNAL(newConnection()),this,
    49           SLOT(slotNewConnection()), Qt::DirectConnection);
    5041
    5142  // Socket and file for outputting the results
     
    217208  _bnseph->start();
    218209
     210  // Connect Slots-Signals
     211  // ---------------------
     212  connect(_bnseph, SIGNAL(newEph(gpsEph*)),
     213          this, SLOT(slotNewEph(gpsEph*)));
     214
     215  connect(_bnseph, SIGNAL(newMessage(QByteArray)),
     216          this, SLOT(slotMessage(const QByteArray)));
     217
     218  connect(_bnseph, SIGNAL(error(QByteArray)),
     219          this, SLOT(slotError(const QByteArray)));
     220
     221  connect(_clkServer, SIGNAL(newConnection()),this,
     222          SLOT(slotNewConnection()));
     223
    219224  // Endless loop
    220225  // ------------
Note: See TracChangeset for help on using the changeset viewer.