diff options
author | dos-reis <gdr@axiomatics.org> | 2013-04-07 17:07:14 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2013-04-07 17:07:14 +0000 |
commit | 075711d2d69a4295c8cef2b5e08708ee8b3d5f3f (patch) | |
tree | e6861c8b1e2aed7169540b3c2b82a8459d093bb7 /src/gui | |
parent | 026723c0e0cfc0c02838c614b3c529d1b5d50c62 (diff) | |
download | open-axiom-075711d2d69a4295c8cef2b5e08708ee8b3d5f3f.tar.gz |
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/main-window.cc | 1 | ||||
-rw-r--r-- | src/gui/main.cc | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/main-window.cc b/src/gui/main-window.cc index b63e4b84..79bb2b26 100644 --- a/src/gui/main-window.cc +++ b/src/gui/main-window.cc @@ -40,6 +40,7 @@ namespace OpenAxiom { MainWindow::MainWindow(Command& cmd) : srv(cmd), tabs(this) { setCentralWidget(&tabs); + setWindowTitle("OpenAxiom"); Debate* debate = new Debate(this, &tabs); tabs.addTab(debate, "Main Frame"); QMenu* file = menuBar()->addMenu(tr("&File")); diff --git a/src/gui/main.cc b/src/gui/main.cc index a372be3a..c806889a 100644 --- a/src/gui/main.cc +++ b/src/gui/main.cc @@ -44,7 +44,6 @@ main(int argc, char* argv[]) { QApplication::setApplicationName("OpenAxiom"); QApplication::setOrganizationDomain("www.open-axiom.org"); MainWindow main_win(command); - main_win.setWindowTitle("OpenAxiom"); main_win.show(); return app.exec(); } |