Changeset 164 in ntrip


Ignore:
Timestamp:
Sep 12, 2006, 9:19:33 PM (18 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncabout.html

    r163 r164  
    1 "<p>"
    2 "BKG NTRIP Client (BNC), Version 1.0<br>"
    3 "<br>"
    41"Developed under GNU General Public License for \"Networked Transport of RTCM via Internet Protocol\" to receive GNSS streaming data over the Internet. Visit <a><u>http://igs.bkg.bund.de/index_ntrip.htm</u></a> for details.<br>"
    52"<br>"
  • trunk/BNC/bncwindow.cpp

    r161 r164  
    429429  QDialog dlg(this);
    430430
    431   QVBoxLayout* dlgLayout = new QVBoxLayout();
    432   dlgLayout->addWidget(tb);
     431  QGridLayout* dlgLayout = new QGridLayout();
     432  QLabel* img = new QLabel();
     433  img->setPixmap(QPixmap(":ntrip-logo-grau.bmp"));
     434  dlgLayout->addWidget(img, 0,0);
     435  dlgLayout->addWidget(new QLabel("BKG NTRIP Client (BNC), Version 1.0"), 0,1);
     436  dlgLayout->addWidget(tb,1,0,1,2);
    433437
    434438  dlg.setLayout(dlgLayout);
Note: See TracChangeset for help on using the changeset viewer.