Changeset 5577 in ntrip for trunk/BNC/src/bncpppclient.cpp


Ignore:
Timestamp:
Nov 25, 2013, 6:06:18 PM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r5576 r5577  
    7676    connect(BNC_CORE, SIGNAL(newCorrections(QList<QString>)),
    7777            this, SLOT(slotNewCorrections(QList<QString>)));
     78
     79    connect(BNC_CORE, SIGNAL(providerIDChanged(QString)),
     80            this, SLOT(slotProviderIDChanged(QString)));
    7881  }
    7982}
     
    528531}
    529532
     533//
     534////////////////////////////////////////////////////////////////////////////
     535void bncPPPclient::slotProviderIDChanged(QString staID) {
     536  QMutexLocker locker(&_mutex);
     537
     538  if (staID != _opt->pppCorrMount) {
     539    return;
     540  }
     541  emit newMessage("bncPPPclient: Provider Changed\n", true);
     542}
Note: See TracChangeset for help on using the changeset viewer.