Changeset 4627 in ntrip for trunk/BNC/src/bncmap_svg.cpp


Ignore:
Timestamp:
Sep 1, 2012, 2:19:52 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncmap_svg.cpp

    r4626 r4627  
    4343//
    4444/////////////////////////////////////////////////////////////////////////////
    45 void t_bncMap::slotNewPoint(QPointF point, QString name, QPen, double) {
     45void t_bncMap::slotNewPoint(const QString& name, double latDeg, double lonDeg) {
    4646  QwtPlotMarker* marker = new QwtPlotMarker();
    47   marker->setValue(point.x(), point.y());
     47  marker->setValue(lonDeg, latDeg);
    4848  marker->setLabel(QwtText(name));
    4949  marker->attach(_mapPlot);
Note: See TracChangeset for help on using the changeset viewer.