Changeset 5068 in ntrip for trunk/BNC/src/app.cpp


Ignore:
Timestamp:
Mar 30, 2013, 11:39:46 AM (11 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/app.cpp

    r5067 r5068  
    2222// Global Variable
    2323////////////////////////////////////////////////////////////////////////////
    24 t_pgmCore* PGM_CORE = 0;
     24t_pgmCore* BNC_CORE = 0;
    2525
    2626// Constructor
     
    2828t_app::t_app(int& argc, char* argv[], bool GUIenabled) :
    2929  QApplication(argc, argv, GUIenabled) {
    30   PGM_CORE = new t_pgmCore(argc, argv, GUIenabled);
     30  BNC_CORE = new t_pgmCore(argc, argv, GUIenabled);
    3131}
    3232
     
    4343  if (ev->type() == QEvent::FileOpen) {  // currently happens on Mac only
    4444    QString fileName = static_cast<QFileOpenEvent*>(ev)->file();
    45     PGM_CORE->setConfFileName(fileName);
     45    BNC_CORE->setConfFileName(fileName);
    4646    return true;
    4747  }
Note: See TracChangeset for help on using the changeset viewer.