Changeset 5015 in ntrip for trunk/GnssCenter/src/mainwin.cpp
- Timestamp:
- Mar 28, 2013, 2:32:27 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GnssCenter/src/mainwin.cpp
r5011 r5015 21 21 #include "plugininterface.h" 22 22 #include "map/svgmap.h" 23 #include "inpedit/inp file.h"23 #include "inpedit/inpedit.h" 24 24 25 25 using namespace std; … … 126 126 QString fileName = QFileDialog::getOpenFileName(this); 127 127 if (!fileName.isEmpty()) { 128 t_inpFile* inpFile = new t_inpFile(fileName); 129 QMdiSubWindow* win = _mdi->addSubWindow(inpFile); 128 t_inpEdit* inpEdit = new t_inpEdit(); 129 inpEdit->setInputFile(fileName); 130 QMdiSubWindow* win = _mdi->addSubWindow(inpEdit); 130 131 win->show(); 131 132 }
Note:
See TracChangeset
for help on using the changeset viewer.