修改源地址

This commit is contained in:
2024-04-24 20:38:26 +08:00
parent addc82cbb2
commit 325a43535f
4 changed files with 31 additions and 1 deletions

View File

@@ -5,6 +5,7 @@
#include "kernelinformation.h"
#include <QStandardItemModel>
#include <qdesktopservices.h>
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
@@ -71,3 +72,15 @@ void MainWindow::on_actionAbout_triggered()
aboutWindow->show();
}
void MainWindow::on_actionGitee_triggered()
{
QDesktopServices::openUrl(QUrl("https://gitee.com/GXDE-OS/gxde-kernel-manager"));
}
void MainWindow::on_actionGithub_triggered()
{
QDesktopServices::openUrl(QUrl("https://github.com/GXDE-OS/gxde-kernel-manager"));
}