Changeset 2304 in ntrip


Ignore:
Timestamp:
Feb 19, 2010, 12:20:41 PM (14 years ago)
Author:
weber
Message:

* empty log message *

Location:
trunk/BNC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncsettings.cpp

    r2303 r2304  
    8181    setValue("pppEstTropo",      "");
    8282    setValue("pppGLONASS",       "");
     83    setValue("pppOrigin",        "");
    8384    setValue("pppRefCrdX",       "");
    8485    setValue("pppRefCrdY",       "");
    8586    setValue("pppRefCrdZ",       "");
    86     setValue("pppOrigin",        "");
    8787    setValue("nmeaFile",         "");
    8888    setValue("nmeaPort",         "");
  • trunk/BNC/bncwindow.cpp

    r2303 r2304  
    12661266        connect(thread, SIGNAL(newLatency(QByteArray, double)),
    12671267                _bncFigureLate, SLOT(slotNewLatency(QByteArray, double)));
    1268         disconnect(thread,
    1269                    SIGNAL(newPosition(bncTime, double, double, double)),
    1270                    _bncFigurePPP,
    1271                    SLOT(slotNewPosition(bncTime, double, double, double)));
    1272         connect(thread, SIGNAL(newPosition(bncTime, double, double, double)),
    1273                 _bncFigurePPP,
    1274                 SLOT(slotNewPosition(bncTime, double, double, double)));
     1268        if ( !settings.value("pppOrigin").toString().isEmpty() ) {
     1269          disconnect(thread,
     1270                     SIGNAL(newPosition(bncTime, double, double, double)),
     1271                     _bncFigurePPP,
     1272                     SLOT(slotNewPosition(bncTime, double, double, double)));
     1273          connect(thread, SIGNAL(newPosition(bncTime, double, double, double)),
     1274                  _bncFigurePPP,
     1275                  SLOT(slotNewPosition(bncTime, double, double, double)));
     1276        }
    12751277        break;
    12761278      }
Note: See TracChangeset for help on using the changeset viewer.