Changeset 2907 in ntrip
- Timestamp:
- Jan 27, 2011, 2:17:20 PM (14 years ago)
- Location:
- trunk/BNC
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/bncapp.cpp ¶
r2899 r2907 117 117 #ifdef USE_COMBINATION 118 118 _bncComb = new bncComb(); 119 if (_bncComb->nStreams() < 2) { 120 delete _bncComb; 121 _bncComb = 0; 122 } 119 123 #endif 120 124 } -
TabularUnified trunk/BNC/bncephuser.cpp ¶
r2904 r2907 39 39 * -----------------------------------------------------------------------*/ 40 40 41 #include <iostream> 42 41 43 #include "bncephuser.h" 42 44 #include "bncapp.h" … … 75 77 QString prn = QString("G%1").arg(gpseph.satellite, 2, 10, QChar('0')); 76 78 79 cout << "newEph " << prn.toAscii().data() << endl; 80 77 81 if (_eph.contains(prn)) { 78 82 t_ephGPS* eLast = static_cast<t_ephGPS*>(_eph.value(prn)->last); … … 100 104 101 105 QString prn = QString("R%1").arg(gloeph.almanac_number, 2, 10, QChar('0')); 106 107 cout << "newEph " << prn.toAscii().data() << endl; 102 108 103 109 if (_eph.contains(prn)) { … … 129 135 QString prn = QString("E%1").arg(galeph.satellite, 2, 10, QChar('0')); 130 136 137 cout << "newEph " << prn.toAscii().data() << endl; 138 131 139 if (_eph.contains(prn)) { 132 140 t_ephGal* eLast = static_cast<t_ephGal*>(_eph.value(prn)->last); -
TabularUnified trunk/BNC/bncwindow.cpp ¶
r2895 r2907 532 532 _aogroup->addTab(pppgroup,tr("PPP (1)")); 533 533 _aogroup->addTab(ppp2group,tr("PPP (2)")); 534 #ifdef USE_COMBINATION 534 535 _aogroup->addTab(cmbgroup,tr("Combination")); 536 #endif 535 537 536 538 // Log Tab
Note:
See TracChangeset
for help on using the changeset viewer.