From 119add20d8997e077dd1de24d432f8eac3e9a66d Mon Sep 17 00:00:00 2001 From: Roy Qu Date: Sun, 1 Oct 2023 15:47:58 +0800 Subject: [PATCH] work save --- RedPandaIDE/mainwindow.cpp | 4 ++-- RedPandaIDE/problems/freeprojectsetformat.cpp | 2 +- RedPandaIDE/widgets/aboutdialog.cpp | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/RedPandaIDE/mainwindow.cpp b/RedPandaIDE/mainwindow.cpp index 012e3e8d..4d11aed0 100644 --- a/RedPandaIDE/mainwindow.cpp +++ b/RedPandaIDE/mainwindow.cpp @@ -9399,7 +9399,7 @@ void MainWindow::on_actionGit_Push_triggered() void MainWindow::on_actionWebsite_triggered() { if (pSettings->environment().language()=="zh_CN") { - QDesktopServices::openUrl(QUrl("http://royqh.net/redpandacpp")); + QDesktopServices::openUrl(QUrl("https://royqh1979.gitee.io/redpandacpp")); } else { QDesktopServices::openUrl(QUrl("https://sourceforge.net/projects/redpanda-cpp/")); } @@ -9822,7 +9822,7 @@ void MainWindow::on_actionSubmit_Issues_triggered() void MainWindow::on_actionDocument_triggered() { - QDesktopServices::openUrl(QUrl("http://royqh.net/redpandacpp/docsy/docs/usage")); + QDesktopServices::openUrl(QUrl("https://royqh1979.gitee.io/redpandacpp/docsy/docs/usage")); } diff --git a/RedPandaIDE/problems/freeprojectsetformat.cpp b/RedPandaIDE/problems/freeprojectsetformat.cpp index 27c1d8c6..cc696402 100644 --- a/RedPandaIDE/problems/freeprojectsetformat.cpp +++ b/RedPandaIDE/problems/freeprojectsetformat.cpp @@ -112,7 +112,7 @@ void exportFreeProblemSet(const QList &problems, const QString &file { writer.writeStartElement("generator"); writer.writeAttribute("name","RedPanda-C++"); - writer.writeAttribute("url","http://royqh.net/redpandacpp"); + writer.writeAttribute("url","https://royqh1979.gitee.io/redpandacpp"); writer.writeEndElement(); // generator } foreach(const POJProblem& problem,problems) { diff --git a/RedPandaIDE/widgets/aboutdialog.cpp b/RedPandaIDE/widgets/aboutdialog.cpp index 0c298183..8ed8cce1 100644 --- a/RedPandaIDE/widgets/aboutdialog.cpp +++ b/RedPandaIDE/widgets/aboutdialog.cpp @@ -49,7 +49,7 @@ AboutDialog::AboutDialog(QWidget *parent) : QString website="https://sourceforge.net/projects/redpanda-cpp/"; if (pSettings->environment().language()=="zh_CN") { - website = "http://royqh.net/redpandacpp"; + website = "https://royqh1979.gitee.io/redpandacpp"; } ui->lblHomepage->setText(tr("Website: %1").arg(website)); }