Changeset 149 in ntrip for trunk/BNC/bncwindow.cpp
- Timestamp:
- Sep 8, 2006, 9:04:28 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncwindow.cpp
r143 r149 17 17 18 18 #include "bncwindow.h" 19 #include "bncapp.h" 19 20 #include "bncgetthread.h" 20 21 #include "bnctabledlg.h" … … 326 327 void bncWindow::slotGetThreadErrors() { 327 328 slotMessage("All Get Threads Terminated"); 329 ((bncApp*)qApp)->slotMessage("All Get Threads Terminated"); 328 330 _actAddMountPoints->setEnabled(true); 329 331 _actGetData->setEnabled(true); … … 347 349 connect(_bncCaster, SIGNAL(newMessage(const QByteArray&)), 348 350 this, SLOT(slotMessage(const QByteArray&))); 351 connect(_bncCaster, SIGNAL(newMessage(const QByteArray&)), 352 (bncApp*)qApp, SLOT(slotMessage(const QByteArray&))); 349 353 350 354 _bncCaster->start(); … … 360 364 connect(getThread, SIGNAL(newMessage(const QByteArray&)), 361 365 this, SLOT(slotMessage(const QByteArray&))); 366 connect(getThread, SIGNAL(newMessage(const QByteArray&)), 367 (bncApp*)qApp, SLOT(slotMessage(const QByteArray&))); 362 368 363 369 _bncCaster->addGetThread(getThread);
Note:
See TracChangeset
for help on using the changeset viewer.