Changeset 5068 in ntrip for trunk/BNC/src/rinex
- Timestamp:
- Mar 30, 2013, 11:39:46 AM (12 years ago)
- Location:
- trunk/BNC/src/rinex
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/bncpostprocess.cpp
r5066 r5068 98 98 } 99 99 else { 100 PGM_CORE->slotMessage(msg, false);100 BNC_CORE->slotMessage(msg, false); 101 101 } 102 102 } … … 222 222 } 223 223 224 if ( PGM_CORE->mode() != t_pgmCore::interactive) {224 if (BNC_CORE->mode() != t_pgmCore::interactive) { 225 225 qApp->exit(0); 226 226 } -
trunk/BNC/src/rinex/reqcanalyze.cpp
r5066 r5068 101 101 delete _log; _log = 0; 102 102 delete _logFile; _logFile = 0; 103 if ( PGM_CORE->mode() != t_pgmCore::interactive) {103 if (BNC_CORE->mode() != t_pgmCore::interactive) { 104 104 qApp->exit(0); 105 105 } … … 116 116 double maxValue) { 117 117 118 if ( PGM_CORE->GUIenabled()) {118 if (BNC_CORE->GUIenabled()) { 119 119 120 120 if (maxValue == 0.0) { … … 142 142 if (data1) { 143 143 t_polarPlot* plot1 = new t_polarPlot(QwtText(title1), scaleInterval, 144 PGM_CORE->mainWindow());144 BNC_CORE->mainWindow()); 145 145 plot1->addCurve(data1); 146 146 plots << plot1; … … 148 148 if (data2) { 149 149 t_polarPlot* plot2 = new t_polarPlot(QwtText(title2), scaleInterval, 150 PGM_CORE->mainWindow());150 BNC_CORE->mainWindow()); 151 151 plot2->addCurve(data2); 152 152 plots << plot2; … … 296 296 // Show the plots 297 297 // -------------- 298 if ( PGM_CORE->GUIenabled()) {298 if (BNC_CORE->GUIenabled()) { 299 299 QFileInfo fileInfo(obsFile->fileName()); 300 300 QByteArray title = fileInfo.fileName().toAscii(); … … 651 651 const QByteArray& title) { 652 652 653 if ( PGM_CORE->GUIenabled()) {653 if (BNC_CORE->GUIenabled()) { 654 654 t_availPlot* plotA = new t_availPlot(0, &_availDataMap); 655 655 plotA->setTitle(title); -
trunk/BNC/src/rinex/reqcedit.cpp
r5066 r5068 108 108 109 109 *_log << QByteArray("Program").leftJustified(15) << ": " 110 << PGM_CORE->pgmName() << endl;110 << BNC_CORE->pgmName() << endl; 111 111 *_log << QByteArray("Run by").leftJustified(15) << ": " 112 << PGM_CORE->userName() << endl;112 << BNC_CORE->userName() << endl; 113 113 *_log << QByteArray("Date").leftJustified(15) << ": " 114 114 << QDateTime::currentDateTime().toUTC().toString("yyyy-MM-dd hh:mm:ss") << endl; … … 146 146 // Exit (thread) 147 147 // ------------- 148 if ( PGM_CORE->mode() != t_pgmCore::interactive) {148 if (BNC_CORE->mode() != t_pgmCore::interactive) { 149 149 qApp->exit(0); 150 150 } -
trunk/BNC/src/rinex/rnxnavfile.cpp
r5066 r5068 241 241 void t_rnxNavFile::writeHeader(const QMap<QString, QString>* txtMap) { 242 242 243 QString runBy = PGM_CORE->userName();243 QString runBy = BNC_CORE->userName(); 244 244 QStringList comments; 245 245 … … 275 275 : "yyyyMMdd hhmmss UTC"; 276 276 *_stream << QString("%1%2%3") 277 .arg( PGM_CORE->pgmName(), -20)277 .arg(BNC_CORE->pgmName(), -20) 278 278 .arg(runBy.trimmed().left(20), -20) 279 279 .arg(QDateTime::currentDateTime().toUTC().toString(fmtDate), -20) -
trunk/BNC/src/rinex/rnxobsfile.cpp
r5066 r5068 213 213 214 214 QStringList newComments; 215 QString runBy = PGM_CORE->userName();215 QString runBy = BNC_CORE->userName(); 216 216 217 217 if (txtMap) { … … 236 236 : "yyyyMMdd hhmmss UTC"; 237 237 *stream << QString("%1%2%3") 238 .arg( PGM_CORE->pgmName(), -20)238 .arg(BNC_CORE->pgmName(), -20) 239 239 .arg(runBy.trimmed().left(20), -20) 240 240 .arg(QDateTime::currentDateTime().toUTC().toString(fmtDate), -20)
Note:
See TracChangeset
for help on using the changeset viewer.