Changeset 628 in ntrip for trunk/BNC/bnccaster.cpp
- Timestamp:
- Dec 16, 2007, 6:57:42 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bnccaster.cpp
r624 r628 178 178 qRegisterMetaType<p_obs>("p_obs"); 179 179 180 connect(getThread, SIGNAL(newObs( constQByteArray, bool, p_obs)),181 this, SLOT(newObs( constQByteArray, bool, p_obs)));182 183 connect(getThread, SIGNAL(error( constQByteArray)),184 this, SLOT(slotGetThreadError( constQByteArray)));180 connect(getThread, SIGNAL(newObs(QByteArray, bool, p_obs)), 181 this, SLOT(newObs(QByteArray, bool, p_obs))); 182 183 connect(getThread, SIGNAL(error(QByteArray)), 184 this, SLOT(slotGetThreadError(QByteArray))); 185 185 186 186 _staIDs.push_back(getThread->staID()); … … 190 190 // Error in get thread 191 191 //////////////////////////////////////////////////////////////////////////// 192 void bncCaster::slotGetThreadError( constQByteArray staID) {192 void bncCaster::slotGetThreadError(QByteArray staID) { 193 193 QMutexLocker locker(&_mutex); 194 194 _staIDs.removeAll(staID);
Note:
See TracChangeset
for help on using the changeset viewer.