diff options
Diffstat (limited to 'src/mainwin.cc')
-rw-r--r-- | src/mainwin.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mainwin.cc b/src/mainwin.cc index fc26799..296cdb5 100644 --- a/src/mainwin.cc +++ b/src/mainwin.cc @@ -288,6 +288,7 @@ MainWindow::MainWindow(const char *filename) // Help menu connect(this->helpActionAbout, SIGNAL(triggered()), this, SLOT(helpAbout())); + connect(this->helpActionHomepage, SIGNAL(triggered()), this, SLOT(helpHomepage())); connect(this->helpActionManual, SIGNAL(triggered()), this, SLOT(helpManual())); @@ -1768,6 +1769,12 @@ MainWindow::helpAbout() } void +MainWindow::helpHomepage() +{ + QDesktopServices::openUrl(QUrl("http://openscad.org/")); +} + +void MainWindow::helpManual() { QDesktopServices::openUrl(QUrl("http://en.wikibooks.org/wiki/OpenSCAD_User_Manual")); |