Changeset 4647 in ntrip for trunk/BNC/src/bncwindow.cpp


Ignore:
Timestamp:
Sep 4, 2012, 3:57:38 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r4646 r4647  
    26722672  t_bncMap* bncMap = new t_bncMap(this);
    26732673  bncMap->setGeometry( x(), int(y()+height()*1.3), 800, 600 );
     2674
     2675  bncSettings settings;
     2676  QListIterator<QString> it(settings.value("mountPoints").toStringList());
     2677  while (it.hasNext()) {
     2678    QStringList hlp = it.next().split(" ");
     2679    if (hlp.size() < 5) continue;
     2680    QUrl   url(hlp[0]);
     2681    double latDeg = hlp[2].toDouble();
     2682    double lonDeg = hlp[3].toDouble();
     2683    qDebug() << url << latDeg << lonDeg;
     2684  }
     2685
    26742686  bncMap->show();
    26752687}
Note: See TracChangeset for help on using the changeset viewer.