summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorLostDragonist <lost.dragonist@gmail.com>2019-01-14 18:53:32 -0600
committerLostDragonist <lost.dragonist@gmail.com>2019-01-14 18:53:32 -0600
commit9c364c0dffa5dd5a6f2d665c678a23ca48897f93 (patch)
treeb578f1afce53f577a816b0744d34acc0cfa6dc75 /src/mainwindow.cpp
parent643d2a772575e735cb20f608ae30173a275b43e4 (diff)
Redirect documentation link in help menu to github.io
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index bc0d991d..5330c799 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -744,7 +744,7 @@ void MainWindow::createHelpWidget()
connect(helpAction, SIGNAL(triggered()), this, SLOT(helpTriggered()));
buttonMenu->addAction(helpAction);
- QAction *wikiAction = new QAction(tr("Documentation Wiki"), buttonMenu);
+ QAction *wikiAction = new QAction(tr("Documentation"), buttonMenu);
connect(wikiAction, SIGNAL(triggered()), this, SLOT(wikiTriggered()));
buttonMenu->addAction(wikiAction);
@@ -2120,7 +2120,7 @@ void MainWindow::helpTriggered()
void MainWindow::wikiTriggered()
{
- QDesktopServices::openUrl(QUrl("http://wiki.step-project.com/Guide:Mod_Organizer"));
+ QDesktopServices::openUrl(QUrl("https://modorganizer2.github.io/"));
}
void MainWindow::discordTriggered()