Changeset 4301 in ntrip for trunk/BNC/src/rinex
- Timestamp:
- Jun 23, 2012, 11:46:56 AM (13 years ago)
- Location:
- trunk/BNC/src/rinex
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/src/rinex/graphwin.cpp ¶
r4299 r4301 42 42 43 43 #include "graphwin.h" 44 #include "polarplot.h" 44 45 45 46 using namespace std; … … 54 55 int ww = QFontMetrics(font()).width('w'); 55 56 57 _polarPlot = new t_polarPlot(this); 58 56 59 // Dialog Layout 57 60 // ------------- … … 63 66 64 67 QVBoxLayout* mainLayout = new QVBoxLayout(this); 68 mainLayout->addWidget(_polarPlot); 65 69 mainLayout->addLayout(buttonLayout); 66 70 -
TabularUnified trunk/BNC/src/rinex/graphwin.h ¶
r4299 r4301 29 29 #include <QtGui> 30 30 31 class t_polarPlot; 32 31 33 class t_graphWin : public QDialog { 32 34 … … 46 48 47 49 private: 48 QPushButton* _buttonOK; 50 QPushButton* _buttonOK; 51 t_polarPlot* _polarPlot; 49 52 }; 50 53
Note:
See TracChangeset
for help on using the changeset viewer.