Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/UIElements/Qt4/QtDialog.cpp

    rf130d4 r163110  
    4545using namespace std;
    4646
    47 QtDialog::QtDialog() :
    48     QDialog(0)
    49 {
     47QtDialog::QtDialog(const std::string &_title) :
     48    QDialog(0),
     49    Dialog(_title)
     50{
     51  setWindowTitle(QString(_title.c_str()));
    5052  // creating and filling of the Dialog window
    5153  mainLayout = new QVBoxLayout();
Note: See TracChangeset for help on using the changeset viewer.