- Timestamp:
- Jun 20, 2012, 5:27:24 PM (12 years ago)
- Location:
- trunk/BNC
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bnccaster.cpp
r3563 r4250 367 367 } 368 368 369 // Reread configuration 369 // Reread configuration (private slot) 370 370 //////////////////////////////////////////////////////////////////////////// 371 371 void bncCaster::slotReadMountPoints() { 372 373 readMountPoints(); 374 } 375 376 // Read Mountpoints 377 //////////////////////////////////////////////////////////////////////////// 378 void bncCaster::readMountPoints() { 372 379 373 380 bncSettings settings; -
trunk/BNC/bnccaster.h
r2711 r4250 42 42 void addGetThread(bncGetThread* getThread, bool noNewThread = false); 43 43 int numStations() const {return _staIDs.size();} 44 void readMountPoints(); 44 45 45 46 public slots: 46 47 void newObs(QByteArray staID, bool firstObs, t_obs obs); 47 void slotReadMountPoints();48 48 void slotNewNMEAstr(QByteArray str); 49 49 … … 54 54 55 55 private slots: 56 void slotReadMountPoints(); 56 57 void slotNewConnection(); 57 58 void slotNewUConnection(); -
trunk/BNC/bncmain.cpp
r4162 r4250 194 194 if ( rawFileName.isEmpty() ) { 195 195 app.setMode(bncApp::nonInteractive); 196 caster-> slotReadMountPoints();196 caster->readMountPoints(); 197 197 if (caster->numStations() == 0) { 198 198 exit(0); -
trunk/BNC/bncwindow.cpp
r4237 r4250 1754 1754 settings.setValue("uploadEphSample", _uploadEphSampleSpinBox->value()); 1755 1755 if (_caster) { 1756 _caster-> slotReadMountPoints();1756 _caster->readMountPoints(); 1757 1757 } 1758 1758 } … … 1838 1838 } 1839 1839 1840 _caster-> slotReadMountPoints();1840 _caster->readMountPoints(); 1841 1841 1842 1842 _casterEph = new bncEphUploadCaster();
Note:
See TracChangeset
for help on using the changeset viewer.