Changeset 823 in ntrip


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

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNS/bns.cpp

    r822 r823  
    3333  _bnseph = new t_bnseph(parent);
    3434
    35   connect(_bnseph, SIGNAL(newEph(gpsEph*)), this, SLOT(slotNewEph(gpsEph*)));
     35  connect(_bnseph, SIGNAL(newEph(gpsEph*)),
     36          this, SLOT(slotNewEph(gpsEph*)), Qt::DirectConnection);
    3637  connect(_bnseph, SIGNAL(newMessage(QByteArray)),
    37           this, SLOT(slotMessage(const QByteArray)));
     38          this, SLOT(slotMessage(const QByteArray)), Qt::DirectConnection);
    3839  connect(_bnseph, SIGNAL(error(QByteArray)),
    39           this, SLOT(slotError(const QByteArray)));
     40          this, SLOT(slotError(const QByteArray)), Qt::DirectConnection);
    4041
    4142  // Server listening for rtnet results
     
    4546  _clkServer = new QTcpServer;
    4647  _clkServer->listen(QHostAddress::Any, settings.value("clkPort").toInt());
    47   connect(_clkServer, SIGNAL(newConnection()),this, SLOT(slotNewConnection()));
     48  connect(_clkServer, SIGNAL(newConnection()),this,
     49          SLOT(slotNewConnection()), Qt::DirectConnection);
    4850
    4951  // Socket and file for outputting the results
Note: See TracChangeset for help on using the changeset viewer.