diff options
author | Marius Kintel <marius@kintel.net> | 2012-08-13 19:59:01 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2012-08-13 19:59:01 (GMT) |
commit | 88e0cf28d7530fdc34e0f6676a90cee133bb9f2b (patch) | |
tree | 2c2c985188ba6d41b15a2747b0f23faca2b50096 /src/mainwin.cc | |
parent | 7ef48a28ff7353d90165af43de095c806852ab43 (diff) | |
parent | 967f5a57abf1ff6641ff26cba3d2919d75b1b942 (diff) |
Merge pull request #169 from openscad/copyright_notices
Copyright notices
Diffstat (limited to 'src/mainwin.cc')
-rw-r--r-- | src/mainwin.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mainwin.cc b/src/mainwin.cc index 3fdee6b..dc738d7 100644 --- a/src/mainwin.cc +++ b/src/mainwin.cc @@ -39,6 +39,7 @@ #include "builtin.h" #include "progress.h" #include "dxfdim.h" +#include "AboutDialog.h" #ifdef ENABLE_OPENCSG #include "CSGTermEvaluator.h" #include "OpenCSGRenderer.h" @@ -1735,7 +1736,9 @@ void MainWindow::helpAbout() { qApp->setWindowIcon(QApplication::windowIcon()); - QMessageBox::information(this, "About OpenSCAD", QString(helptitle) + QString(copyrighttext)); + AboutDialog *dialog = new AboutDialog(this); + dialog->exec(); + //QMessageBox::information(this, "About OpenSCAD", QString(helptitle) + QString(copyrighttext)); } void |