Changeset 5072 in ntrip for trunk/BNC/src/bncmain.cpp


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

Legend:

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

    r5070 r5072  
    138138  if (interactive) {
    139139
    140     BNC_CORE->setMode(t_pgmCore::interactive);
     140    BNC_CORE->setMode(t_bncCore::interactive);
    141141
    142142    QString fontString = settings.value("font").toString();
     
    160160  // -------------------
    161161  else if (settings.value("pppSPP").toString() == "Post-Processing") {
    162     BNC_CORE->setMode(t_pgmCore::batchPostProcessing);
     162    BNC_CORE->setMode(t_bncCore::batchPostProcessing);
    163163    t_postProcessing* postProcessing = new t_postProcessing(0);
    164164    postProcessing->start();
     
    168168  // -------------------------
    169169  else if (settings.value("reqcAction").toString() == "Edit/Concatenate") {
    170     BNC_CORE->setMode(t_pgmCore::batchPostProcessing);
     170    BNC_CORE->setMode(t_bncCore::batchPostProcessing);
    171171    t_reqcEdit* reqcEdit = new t_reqcEdit(0);
    172172    reqcEdit->start();
     
    176176  // ----------------------------
    177177  else if (settings.value("reqcAction").toString() == "Analyze") {
    178     BNC_CORE->setMode(t_pgmCore::batchPostProcessing);
     178    BNC_CORE->setMode(t_bncCore::batchPostProcessing);
    179179    t_reqcAnalyze* reqcAnalyze = new t_reqcAnalyze(0);
    180180    reqcAnalyze->start();
     
    206206    // --------------------------------
    207207    if ( rawFileName.isEmpty() ) {
    208       BNC_CORE->setMode(t_pgmCore::nonInteractive);
     208      BNC_CORE->setMode(t_bncCore::nonInteractive);
    209209      caster->readMountPoints();
    210210      if (caster->numStations() == 0) {
     
    216216    // -----------------------------
    217217    else {
    218       BNC_CORE->setMode(t_pgmCore::batchPostProcessing);
     218      BNC_CORE->setMode(t_bncCore::batchPostProcessing);
    219219      bncRawFile*   rawFile   = new bncRawFile(rawFileName, "",
    220220                                               bncRawFile::input);
Note: See TracChangeset for help on using the changeset viewer.