Ignore:
Timestamp:
Sep 18, 2013, 2:14:51 PM (11 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GnssCenter/monitor/monitor.cpp

    r5481 r5482  
    4747  setCentralWidget(_tabWidget);
    4848
    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");
    5356
    5457  // Tool Bar
     
    222225      }
    223226    }
    224     _plot->slotNewPoints(points);
     227    _plotStations->slotNewPoints(points);
    225228
    226229    QListIterator<t_worldPlot::t_point*> it(points);
Note: See TracChangeset for help on using the changeset viewer.