Changeset 5453 in ntrip for trunk/GnssCenter/monitor
- Timestamp:
- Sep 14, 2013, 3:33:22 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GnssCenter/monitor/monitor.cpp
r5452 r5453 66 66 // Host and Port 67 67 // ------------- 68 t_settings settings; 69 settings.beginGroup(pluginName); 68 t_settings settings(pluginName); 70 69 settings.setValue("host", "rtnet.rtcm-ntrip.org"); 71 70 settings.setValue("port", 7777); 72 settings.endGroup();73 71 settings.sync(); 74 72 … … 96 94 void t_monitor::slotStartThrift() { 97 95 if (!_thriftClient) { 98 t_settings settings; 99 settings.beginGroup(pluginName); 96 t_settings settings(pluginName); 100 97 QString host = settings.value("host").toString(); 101 98 int port = settings.value("port").toInt(); 102 settings.endGroup();103 99 _thriftClient = new t_thriftClient(this, host, port); 104 100 connect(_thriftClient, SIGNAL(finished()), this, SLOT(slotThriftFinished()));
Note:
See TracChangeset
for help on using the changeset viewer.