Changeset 5477 in ntrip for trunk/GnssCenter/monitor
- Timestamp:
- Sep 18, 2013, 12:22:59 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GnssCenter/monitor/monitor.cpp
r5476 r5477 149 149 ///////////////////////////////////////////////////////////////////////////// 150 150 void t_monitor::slotStartThrift() { 151 enableActions();152 151 if (!_thriftClient) { 153 152 _thriftClient = new t_thriftClient(this, _host, _port.toInt()); … … 156 155 slotPlotResults(); 157 156 } 157 enableActions(); 158 158 } 159 159 … … 161 161 ///////////////////////////////////////////////////////////////////////////// 162 162 void t_monitor::slotStopThrift() { 163 enableActions();164 163 if (_thriftClient) { 165 164 _thriftClient->stop(); 166 165 _thriftClient = 0; 167 166 } 167 enableActions(); 168 168 } 169 169 … … 171 171 ///////////////////////////////////////////////////////////////////////////// 172 172 void t_monitor::slotThriftFinished() { 173 enableActions();174 173 sender()->deleteLater(); 175 174 _thriftClient = 0; 175 enableActions(); 176 176 } 177 177
Note:
See TracChangeset
for help on using the changeset viewer.