- Timestamp:
- Jan 27, 2011, 2:31:39 PM (14 years ago)
- Location:
- trunk/BNC
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bnc.pro
r2904 r2909 2 2 # Switch to debug configuration 3 3 # ----------------------------- 4 CONFIG -= release5 CONFIG += debug4 CONFIG -= debug 5 CONFIG += release 6 6 7 7 -
trunk/BNC/bncapp.cpp
r2907 r2909 114 114 _GLOFreq[ii] = 0; 115 115 } 116 117 #ifdef USE_COMBINATION118 _bncComb = new bncComb();119 if (_bncComb->nStreams() < 2) {120 delete _bncComb;121 _bncComb = 0;122 }123 #endif124 116 } 125 117 … … 876 868 } 877 869 } 870 871 // 872 //////////////////////////////////////////////////////////////////////////// 873 void bncApp::initCombination() { 874 #ifdef USE_COMBINATION 875 _bncComb = new bncComb(); 876 if (_bncComb->nStreams() < 2) { 877 delete _bncComb; 878 _bncComb = 0; 879 } 880 #endif 881 } -
trunk/BNC/bncapp.h
r2865 r2909 51 51 void storeGlonassSlotNums(const int GLOFreq[]); 52 52 void getGlonassSlotNums(int GLOFreq[]); 53 void initCombination(); 53 54 54 55 public slots: -
trunk/BNC/bncmain.cpp
r2832 r2909 132 132 app.setPort(settings.value("outEphPort").toInt()); 133 133 app.setPortCorr(settings.value("corrPort").toInt()); 134 app.initCombination(); 134 135 135 136 app.connect(caster, SIGNAL(getThreadsFinished()), &app, SLOT(quit())); … … 160 161 caster->addGetThread(getThread, true); 161 162 } 163 162 164 } 163 165 -
trunk/BNC/bncwindow.cpp
r2907 r2909 1300 1300 ((bncApp*)qApp)->setPort(_outEphPortLineEdit->text().toInt()); 1301 1301 ((bncApp*)qApp)->setPortCorr(_corrPortLineEdit->text().toInt()); 1302 ((bncApp*)qApp)->initCombination(); 1302 1303 1303 1304 connect(_caster, SIGNAL(getThreadsFinished()),
Note:
See TracChangeset
for help on using the changeset viewer.