Changeset 3235 in ntrip for trunk/BNC/upload
- Timestamp:
- Apr 1, 2011, 2:12:30 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/upload/bncuploadcaster.cpp
r3234 r3235 19 19 #include "bncversion.h" 20 20 #include "bncapp.h" 21 #include "bnctableitem.h" 21 22 22 23 using namespace std; … … 27 28 const QString& outHost, int outPort, 28 29 const QString& password, int iRow) { 29 30 connect(this, SIGNAL(newMessage(QByteArray,bool)),31 ((bncApp*)qApp), SLOT(slotMessage(const QByteArray,bool)));32 33 30 _mountpoint = mountpoint; 34 31 _outHost = outHost; … … 39 36 _iRow = iRow; 40 37 _isToBeDeleted = false; 38 39 bncApp* app = (bncApp*) qApp; 40 connect(this, SIGNAL(newMessage(QByteArray,bool)), 41 app, SLOT(slotMessage(const QByteArray,bool))); 42 43 if (app->_uploadTableItems.find(_iRow) != app->_uploadTableItems.end()){ 44 connect(this, SIGNAL(newBytes(QByteArray,double)), 45 app->_uploadTableItems.value(iRow), 46 SLOT(newBytes(const QByteArray,double))); 47 } 41 48 } 42 49
Note:
See TracChangeset
for help on using the changeset viewer.