Changeset 5482 in ntrip
- Timestamp:
- Sep 18, 2013, 2:14:51 PM (11 years ago)
- Location:
- trunk/GnssCenter/monitor
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GnssCenter/monitor/monitor.cpp
r5481 r5482 47 47 setCentralWidget(_tabWidget); 48 48 49 // World Plot 50 // ---------- 51 _plot = new t_worldPlot(); 52 _tabWidget->addTab(_plot, "Stations"); 49 // World Plots 50 // ----------- 51 _plotStations = new t_worldPlot(); 52 _tabWidget->addTab(_plotStations, "Stations"); 53 54 _plotSatellites = new t_worldPlot(); 55 _tabWidget->addTab(_plotSatellites, "Satellites"); 53 56 54 57 // Tool Bar … … 222 225 } 223 226 } 224 _plot ->slotNewPoints(points);227 _plotStations->slotNewPoints(points); 225 228 226 229 QListIterator<t_worldPlot::t_point*> it(points); -
trunk/GnssCenter/monitor/monitor.h
r5480 r5482 40 40 QAction* _actStartThrift; 41 41 QAction* _actStopThrift; 42 t_worldPlot* _plot;43 42 QString _host; 44 43 QString _port; 45 44 t_thriftClient* _thriftClient; 45 t_worldPlot* _plotStations; 46 t_worldPlot* _plotSatellites; 46 47 std::vector<t_thriftResult*>* _results; 47 48 };
Note:
See TracChangeset
for help on using the changeset viewer.