Changeset 1376 in ntrip
- Timestamp:
- Dec 28, 2008, 10:30:15 PM (16 years ago)
- Location:
- trunk/BNC
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/bncgetthread.cpp ¶
r1369 r1376 355 355 QStringList table; 356 356 bncTableDlg::getFullTable(_mountPoint.host(), _mountPoint.port(), 357 _ntripVersion,table);357 table); 358 358 QString net; 359 359 QStringListIterator it(table); -
TabularUnified trunk/BNC/bncnetquery.cpp ¶
r1374 r1376 70 70 //////////////////////////////////////////////////////////////////////////// 71 71 void bncNetQuery::startRequest(const QUrl& url) { 72 startRequest(url, true);72 startRequest(url, false); 73 73 } 74 74 … … 123 123 // Send Request 124 124 // ------------ 125 startRequest(url); 125 startRequest(url, true); 126 126 127 127 // Wait Loop -
TabularUnified trunk/BNC/bncrinex.cpp ¶
r1353 r1376 123 123 QStringList table; 124 124 bncTableDlg::getFullTable(_mountPoint.host(), _mountPoint.port(), 125 _ntripVersion,table, _reloadTable);125 table, _reloadTable); 126 126 QString net; 127 127 QStringListIterator it(table); -
TabularUnified trunk/BNC/bnctabledlg.cpp ¶
r1375 r1376 150 150 //////////////////////////////////////////////////////////////////////////// 151 151 t_irc bncTableDlg::getFullTable(const QString& casterHost, 152 int casterPort, const QByteArray& ntripVersion,153 QStringList& allLines,bool alwaysRead) {152 int casterPort, QStringList& allLines, 153 bool alwaysRead) { 154 154 155 155 static QMutex mutex; … … 199 199 if ( getFullTable(_casterHostLineEdit->currentText(), 200 200 _casterPortLineEdit->text().toInt(), 201 _ntripVersionComboBox->currentText().toAscii(),202 201 _allLines) != success ) { 203 202 QMessageBox::warning(0, "BNC", "Cannot retrieve table of data"); -
TabularUnified trunk/BNC/bnctabledlg.h ¶
r1353 r1376 39 39 ~bncTableDlg(); 40 40 static t_irc getFullTable(const QString& casterHost, int casterPort, 41 const QByteArray& ntripVersion,42 41 QStringList& allLines, bool alwaysRead = true); 43 42
Note:
See TracChangeset
for help on using the changeset viewer.