Changeset 184 in ntrip
- Timestamp:
- Sep 24, 2006, 4:41:28 PM (18 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC
- Property svn:ignore
-
old new 11 11 moc_bnchtml.cpp 12 12 moc_bnchlpdlg.cpp 13 moc_bnctableitem.cpp
-
- Property svn:ignore
-
trunk/BNC/.cvsignore
r179 r184 11 11 moc_bnchtml.cpp 12 12 moc_bnchlpdlg.cpp 13 moc_bnctableitem.cpp -
trunk/BNC/bnc.pro
r177 r184 13 13 HEADERS = bnchelp.html bncgetthread.h bncwindow.h bnctabledlg.h \ 14 14 bnccaster.h bncrinex.h bncapp.h bncutils.h bnchlpdlg.h \ 15 bncconst.h bnchtml.h 15 bncconst.h bnchtml.h bnctableitem.h \ 16 16 RTCM/format.h RTCM/GPSDecoder.h RTCM/m_data.h RTCM/RTCM.h \ 17 17 RTCM3/rtcm3.h RTCM3/rtcm3torinex.h \ … … 22 22 SOURCES = bncmain.cpp bncgetthread.cpp bncwindow.cpp bnctabledlg.cpp \ 23 23 bnccaster.cpp bncrinex.cpp bncapp.cpp bncutils.cpp \ 24 bncconst.cpp bnchtml.cpp bnchlpdlg.cpp 24 bncconst.cpp bnchtml.cpp bnchlpdlg.cpp bnctableitem.cpp \ 25 25 RTCM/m_date.cpp RTCM/RTCM.cpp \ 26 26 RTCM3/rtcm3.cpp RTCM3/rtcm3torinex.cpp \ -
trunk/BNC/bncwindow.cpp
r183 r184 22 22 #include "bnchlpdlg.h" 23 23 #include "bnchtml.h" 24 #include "bnctableitem.h" 24 25 25 26 using namespace std; … … 130 131 _rnxSamplSpinBox->setSuffix(" sec"); 131 132 _logFileLineEdit = new QLineEdit(settings.value("logFile").toString()); 132 _mountPointsTable = new QTableWidget(0, 3);133 _mountPointsTable = new QTableWidget(0,4); 133 134 _mountPointsTable->horizontalHeader()->setResizeMode(QHeaderView::Stretch); 134 135 _mountPointsTable->horizontalHeader()->hide(); … … 164 165 it = new QTableWidgetItem(format); 165 166 _mountPointsTable->setItem(iRow, 2, it); 167 168 bncTableItem* bncIt = new bncTableItem(); 169 _mountPointsTable->setItem(iRow, 3, bncIt); 170 166 171 iRow++; 167 172 } … … 296 301 it = new QTableWidgetItem(format); 297 302 _mountPointsTable->setItem(iRow, 2, it); 303 304 bncTableItem* bncIt = new bncTableItem(); 305 _mountPointsTable->setItem(iRow, 3, bncIt); 306 298 307 iRow++; 299 308 } … … 379 388 (bncApp*)qApp, SLOT(slotMessage(const QByteArray&))); 380 389 390 connect(getThread, SIGNAL(newObs(const QByteArray&, Observation*)), 391 (bncTableItem*) _mountPointsTable->item(iRow, 3), 392 SLOT(slotNewObs(const QByteArray&, Observation*))); 393 381 394 _bncCaster->addGetThread(getThread); 382 395
Note:
See TracChangeset
for help on using the changeset viewer.