- Timestamp:
- Apr 15, 2008, 9:27:17 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNS/bns.cpp
r822 r823 33 33 _bnseph = new t_bnseph(parent); 34 34 35 connect(_bnseph, SIGNAL(newEph(gpsEph*)), this, SLOT(slotNewEph(gpsEph*))); 35 connect(_bnseph, SIGNAL(newEph(gpsEph*)), 36 this, SLOT(slotNewEph(gpsEph*)), Qt::DirectConnection); 36 37 connect(_bnseph, SIGNAL(newMessage(QByteArray)), 37 this, SLOT(slotMessage(const QByteArray))); 38 this, SLOT(slotMessage(const QByteArray)), Qt::DirectConnection); 38 39 connect(_bnseph, SIGNAL(error(QByteArray)), 39 this, SLOT(slotError(const QByteArray))); 40 this, SLOT(slotError(const QByteArray)), Qt::DirectConnection); 40 41 41 42 // Server listening for rtnet results … … 45 46 _clkServer = new QTcpServer; 46 47 _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); 48 50 49 51 // Socket and file for outputting the results
Note:
See TracChangeset
for help on using the changeset viewer.