- Timestamp:
- Jul 8, 2010, 8:55:38 PM (14 years ago)
- Location:
- trunk/BNS
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNS/bns.pro
r2493 r2509 33 33 bnseph.h bnsutils.h bnsrinex.h bnssp3.h bnsoutf.h \ 34 34 bnscaster.h clock_and_orbit/clock_orbit_rtcm.h bnssettings.h bnsapp.h \ 35 bnscustomtrafo.h rtcm3torinex/rtcm3torinex.h bnctime.h timeutils.h 35 bnscustomtrafo.h rtcm3torinex/rtcm3torinex.h bnctime.h timeutils.h \ 36 bnsversion.h 36 37 37 38 HEADERS += newmat/controlw.h newmat/include.h newmat/myexcept.h \ -
trunk/BNS/bnscaster.cpp
r2374 r2509 18 18 #include "bnscaster.h" 19 19 #include "bnssettings.h" 20 #include "bnsversion.h" 20 21 21 22 using namespace std; … … 194 195 QByteArray msg = "SOURCE " + password.toAscii() + " /" + 195 196 _mountpoint.toAscii() + "\r\n" + 196 "Source-Agent: NTRIP BNS/ 1.1\r\n\r\n";197 "Source-Agent: NTRIP BNS/" BNSVERSION "\r\n\r\n"; 197 198 198 199 _outSocket->write(msg); -
trunk/BNS/bnswindow.cpp
r2359 r2509 22 22 #include "bnssettings.h" 23 23 #include "bnscustomtrafo.h" 24 #include "bnsversion.h" 24 25 25 26 using namespace std; … … 44 45 img->setPixmap(QPixmap(":ntrip-logo.png")); 45 46 dlgLayout->addWidget(img, 0,0); 46 dlgLayout->addWidget(new QLabel("BKG Ntrip State Space Server (BNS) Version 1.1"), 0,1);47 dlgLayout->addWidget(new QLabel("BKG Ntrip State Space Server (BNS) Version " BNSVERSION), 0,1); 47 48 dlgLayout->addWidget(tb,1,0,1,2); 48 49 dlgLayout->addWidget(_closeButton,2,1,Qt::AlignRight); … … 101 102 int ww = QFontMetrics(this->font()).width('w'); 102 103 setMinimumSize(77*ww, 65*ww); 103 setWindowTitle(tr("BKG Ntrip State Space Server (BNS) Version 1.1"));104 setWindowTitle(tr("BKG Ntrip State Space Server (BNS) Version " BNSVERSION)); 104 105 setWindowIcon(QPixmap(":ntrip-logo.png")); 105 106
Note:
See TracChangeset
for help on using the changeset viewer.