Changeset 10073 in ntrip for trunk/BNC/src
- Timestamp:
- May 23, 2023, 9:23:19 AM (18 months ago)
- Location:
- trunk/BNC/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bnccore.cpp
r10040 r10073 67 67 //////////////////////////////////////////////////////////////////////////// 68 68 t_bncCore::t_bncCore() : _ephUser(false) { 69 _GUIenabled = true;70 69 _logFileFlag = 0; 71 70 _logFile = 0; -
trunk/BNC/src/bncmain.cpp
r10062 r10073 411 411 app->setApplicationName("BNC"); 412 412 app->setOrganizationName("BKG"); 413 app->setOrganizationDomain("www.bkg.bund.de"); 414 //app->setWindowIcon(QPixmap(":ntrip-logo.png")); 413 app->setOrganizationDomain("www.bkg.bund.de"); //app->setWindowIcon(QPixmap(":ntrip-logo.png")); 415 414 BNC_CORE->setGUIenabled(GUIenabled); 416 415 } 417 418 416 BNC_CORE->setConfFileName( confFileName ); 419 417 -
trunk/BNC/src/rinex/reqcanalyze.cpp
r9854 r10073 69 69 _navFileNames = settings.value("reqcNavFile").toString().split(",", QString::SkipEmptyParts); 70 70 _reqcPlotSignals = settings.value("reqcSkyPlotSignals").toString(); 71 _defaultSignalTypes << "G:1&2&5" << "R:1&2&3" << "J:1&2" << "E:1&5" << "S:1&5" << "C:2& 7" << "I:5&9";71 _defaultSignalTypes << "G:1&2&5" << "R:1&2&3" << "J:1&2" << "E:1&5" << "S:1&5" << "C:2&6" << "I:5&9"; 72 72 if (_reqcPlotSignals.isEmpty()) { 73 73 _reqcPlotSignals = _defaultSignalTypes.join(" "); … … 77 77 qRegisterMetaType< QVector<t_skyPlotData> >("QVector<t_skyPlotData>"); 78 78 79 connect(this, SIGNAL(dspSkyPlot(const QString&, QVector<t_skyPlotData>, 80 const QByteArray&, double)), 81 this, SLOT(slotDspSkyPlot(const QString&, QVector<t_skyPlotData>, 82 const QByteArray&, double))); 79 connect(this, SIGNAL(dspSkyPlot(const QString&, QVector<t_skyPlotData>, const QByteArray&, double)), 80 this, SLOT(slotDspSkyPlot(const QString&, QVector<t_skyPlotData>, const QByteArray&, double))); 83 81 84 82 connect(this, SIGNAL(dspAvailPlot(const QString&, const QByteArray&)),
Note:
See TracChangeset
for help on using the changeset viewer.