Changeset 458 in ntrip
- Timestamp:
- May 11, 2007, 5:26:56 PM (18 years ago)
- Location:
- trunk/BNC
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bnccaster.cpp
r408 r458 186 186 //////////////////////////////////////////////////////////////////////////// 187 187 void bncCaster::addGetThread(bncGetThread* getThread) { 188 connect(getThread, SIGNAL(error(const QByteArray &)),189 this, SLOT(slotGetThreadError(const QByteArray &)));188 connect(getThread, SIGNAL(error(const QByteArray)), 189 this, SLOT(slotGetThreadError(const QByteArray))); 190 190 191 191 _staIDs.push_back(getThread->staID()); … … 195 195 // Error in get thread 196 196 //////////////////////////////////////////////////////////////////////////// 197 void bncCaster::slotGetThreadError(const QByteArray &staID) {197 void bncCaster::slotGetThreadError(const QByteArray staID) { 198 198 QMutexLocker locker(&_mutex); 199 199 _staIDs.removeAll(staID); -
trunk/BNC/bnccaster.h
r408 r458 51 51 private slots: 52 52 void slotNewConnection(); 53 void slotGetThreadError(const QByteArray &staID);53 void slotGetThreadError(const QByteArray staID); 54 54 void dumpEpochSlot(); 55 55 -
trunk/BNC/bncgetthread.h
r423 r458 53 53 signals: 54 54 void newObs(const QByteArray& staID, Observation* obs); 55 void error(const QByteArray &staID);56 void newMessage(const QByteArray &msg);55 void error(const QByteArray staID); 56 void newMessage(const QByteArray msg); 57 57 58 58 protected: -
trunk/BNC/bncwindow.cpp
r456 r458 561 561 // Display Program Messages 562 562 //////////////////////////////////////////////////////////////////////////// 563 void bncWindow::slotMessage(const QByteArray &msg) {563 void bncWindow::slotMessage(const QByteArray msg) { 564 564 565 565 const int maxBufferSize = 10000; -
trunk/BNC/bncwindow.h
r399 r458 40 40 41 41 public slots: 42 void slotMessage(const QByteArray &msg);42 void slotMessage(const QByteArray msg); 43 43 44 44 private slots:
Note:
See TracChangeset
for help on using the changeset viewer.