Skip to content

Commit

Permalink
Update qetmainwindow.cpp
Browse files Browse the repository at this point in the history
Fix download url
  • Loading branch information
scorpio810 authored Nov 23, 2024
1 parent 2b77964 commit 732d317
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sources/qetmainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -115,12 +115,12 @@ void QETMainWindow::initCommonActions()
upgrade_M -> setStatusTip(tr("Lance le navigateur par défaut vers le dépot Nightly en ligne de QElectroTech", "status bar tip"));

connect(upgrade_, &QAction::triggered, [](bool) {
QString link = "https://qelectrotech.org/download_windows_QET.html";
QString link = "https://qelectrotech.org/download.php";
QDesktopServices::openUrl(QUrl(link));
});

connect(upgrade_M, &QAction::triggered, [](bool) {
QString link = "https://qelectrotech.org/download_mac_QET.html";
QString link = "https://qelectrotech.org/download.php";
QDesktopServices::openUrl(QUrl(link));
});

Expand Down

0 comments on commit 732d317

Please sign in to comment.