Changes in src/UIElements/Qt4/QtDialog.cpp [f130d4:163110]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/Qt4/QtDialog.cpp
rf130d4 r163110 45 45 using namespace std; 46 46 47 QtDialog::QtDialog() : 48 QDialog(0) 49 { 47 QtDialog::QtDialog(const std::string &_title) : 48 QDialog(0), 49 Dialog(_title) 50 { 51 setWindowTitle(QString(_title.c_str())); 50 52 // creating and filling of the Dialog window 51 53 mainLayout = new QVBoxLayout();
Note:
See TracChangeset
for help on using the changeset viewer.