Skip to content
Snippets Groups Projects
Commit 8d7a6749 authored by Václav Mareš's avatar Václav Mareš Committed by Jan Trávníček
Browse files

Add window titles

parent a3288c9a
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,7 @@ InputDialog::InputDialog(QWidget *parent) :
ui(new Ui::InputDialog)
{
ui->setupUi(this);
setWindowTitle("Input settings");
}
 
automaton::Automaton *InputDialog::getAutomaton()
......
......@@ -6,6 +6,7 @@ OutputDialog::OutputDialog(QWidget *parent) :
ui(new Ui::OutputDialog)
{
ui->setupUi(this);
setWindowTitle("Output settings");
}
 
OutputDialog::~OutputDialog()
......
......@@ -6,6 +6,7 @@ ResultDialog::ResultDialog(QWidget *parent) :
ui(new Ui::ResultDialog)
{
ui->setupUi(this);
setWindowTitle("Result");
}
 
void ResultDialog::setXMLContent(QString XMLString)
......
......@@ -21,7 +21,6 @@ automaton::Automaton *OutputModelBox::run()
if( res )
{
ResultDialog * resultDlg = new ResultDialog();
resultDlg->setWindowTitle("Result");
resultDlg->setXMLContent( QString::fromStdString(alib::XmlDataFactory::toString( *res ) ) );
resultDlg->exec();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment