Index: trunk/BNC/src/rinex/bncpostprocess.cpp
===================================================================
--- trunk/BNC/src/rinex/bncpostprocess.cpp	(revision 5066)
+++ trunk/BNC/src/rinex/bncpostprocess.cpp	(revision 5068)
@@ -98,5 +98,5 @@
   }
   else {
-    PGM_CORE->slotMessage(msg, false);
+    BNC_CORE->slotMessage(msg, false);
   }
 }
@@ -222,5 +222,5 @@
   }
 
-  if (PGM_CORE->mode() != t_pgmCore::interactive) {
+  if (BNC_CORE->mode() != t_pgmCore::interactive) {
     qApp->exit(0);
   }
Index: trunk/BNC/src/rinex/reqcanalyze.cpp
===================================================================
--- trunk/BNC/src/rinex/reqcanalyze.cpp	(revision 5066)
+++ trunk/BNC/src/rinex/reqcanalyze.cpp	(revision 5068)
@@ -101,5 +101,5 @@
   delete _log;     _log     = 0;
   delete _logFile; _logFile = 0;
-  if (PGM_CORE->mode() != t_pgmCore::interactive) {
+  if (BNC_CORE->mode() != t_pgmCore::interactive) {
     qApp->exit(0);
   }
@@ -116,5 +116,5 @@
                                    double maxValue) {
 
-  if (PGM_CORE->GUIenabled()) {
+  if (BNC_CORE->GUIenabled()) {
 
     if (maxValue == 0.0) {
@@ -142,5 +142,5 @@
     if (data1) {
       t_polarPlot* plot1 = new t_polarPlot(QwtText(title1), scaleInterval,
-                                          PGM_CORE->mainWindow());
+                                          BNC_CORE->mainWindow());
       plot1->addCurve(data1);
       plots << plot1;
@@ -148,5 +148,5 @@
     if (data2) {
       t_polarPlot* plot2 = new t_polarPlot(QwtText(title2), scaleInterval,
-                                           PGM_CORE->mainWindow());
+                                           BNC_CORE->mainWindow());
       plot2->addCurve(data2);
       plots << plot2;
@@ -296,5 +296,5 @@
   // Show the plots
   // --------------
-  if (PGM_CORE->GUIenabled()) {
+  if (BNC_CORE->GUIenabled()) {
     QFileInfo  fileInfo(obsFile->fileName());
     QByteArray title = fileInfo.fileName().toAscii();
@@ -651,5 +651,5 @@
                                      const QByteArray& title) {
 
-  if (PGM_CORE->GUIenabled()) {
+  if (BNC_CORE->GUIenabled()) {
     t_availPlot* plotA = new t_availPlot(0, &_availDataMap);
     plotA->setTitle(title);
Index: trunk/BNC/src/rinex/reqcedit.cpp
===================================================================
--- trunk/BNC/src/rinex/reqcedit.cpp	(revision 5066)
+++ trunk/BNC/src/rinex/reqcedit.cpp	(revision 5068)
@@ -108,7 +108,7 @@
 
     *_log << QByteArray("Program").leftJustified(15) << ": "
-          << PGM_CORE->pgmName() << endl;
+          << BNC_CORE->pgmName() << endl;
     *_log << QByteArray("Run by").leftJustified(15) << ": "
-          << PGM_CORE->userName() << endl;
+          << BNC_CORE->userName() << endl;
     *_log << QByteArray("Date").leftJustified(15) << ": "
           << QDateTime::currentDateTime().toUTC().toString("yyyy-MM-dd hh:mm:ss") << endl;
@@ -146,5 +146,5 @@
   // Exit (thread)
   // -------------
-  if (PGM_CORE->mode() != t_pgmCore::interactive) {
+  if (BNC_CORE->mode() != t_pgmCore::interactive) {
     qApp->exit(0);
   }
Index: trunk/BNC/src/rinex/rnxnavfile.cpp
===================================================================
--- trunk/BNC/src/rinex/rnxnavfile.cpp	(revision 5066)
+++ trunk/BNC/src/rinex/rnxnavfile.cpp	(revision 5068)
@@ -241,5 +241,5 @@
 void t_rnxNavFile::writeHeader(const QMap<QString, QString>* txtMap) {
 
-  QString     runBy = PGM_CORE->userName();
+  QString     runBy = BNC_CORE->userName();
   QStringList comments;
 
@@ -275,5 +275,5 @@
                                             : "yyyyMMdd hhmmss UTC";
   *_stream << QString("%1%2%3")
-    .arg(PGM_CORE->pgmName(), -20)
+    .arg(BNC_CORE->pgmName(), -20)
     .arg(runBy.trimmed().left(20), -20)
     .arg(QDateTime::currentDateTime().toUTC().toString(fmtDate), -20)
Index: trunk/BNC/src/rinex/rnxobsfile.cpp
===================================================================
--- trunk/BNC/src/rinex/rnxobsfile.cpp	(revision 5066)
+++ trunk/BNC/src/rinex/rnxobsfile.cpp	(revision 5068)
@@ -213,5 +213,5 @@
 
   QStringList newComments;
-  QString     runBy = PGM_CORE->userName();
+  QString     runBy = BNC_CORE->userName();
 
   if (txtMap) {
@@ -236,5 +236,5 @@
                                                   : "yyyyMMdd hhmmss UTC";
   *stream << QString("%1%2%3")
-    .arg(PGM_CORE->pgmName(), -20)
+    .arg(BNC_CORE->pgmName(), -20)
     .arg(runBy.trimmed().left(20), -20)
     .arg(QDateTime::currentDateTime().toUTC().toString(fmtDate), -20)
