aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/Wizard.cpp
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2024-01-23 13:24:14 +0000
committersaturneric <[email protected]>2024-01-23 13:24:14 +0000
commitbab198aa131d4856a5af1668494d96cbcd612c0f (patch)
tree3d0fe2acc7eea39a75bfa7cbc60d7f90d89571d8 /src/ui/dialog/Wizard.cpp
parentfeat: add a setting to enable gpgme debug log (diff)
downloadGpgFrontend-bab198aa131d4856a5af1668494d96cbcd612c0f.tar.gz
GpgFrontend-bab198aa131d4856a5af1668494d96cbcd612c0f.zip
feat: improve key list and find widget
Diffstat (limited to 'src/ui/dialog/Wizard.cpp')
-rw-r--r--src/ui/dialog/Wizard.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/ui/dialog/Wizard.cpp b/src/ui/dialog/Wizard.cpp
index 89ebee27..b6fa53f3 100644
--- a/src/ui/dialog/Wizard.cpp
+++ b/src/ui/dialog/Wizard.cpp
@@ -218,20 +218,20 @@ ConclusionPage::ConclusionPage(QWidget* parent) : QWizardPage(parent) {
setTitle(tr("Ready."));
setSubTitle(tr("Have fun with GpgFrontend!"));
- auto* bottomLabel = new QLabel(
+ auto* bottom_label = new QLabel(
tr("You are ready to use GpgFrontend now.<br><br>") +
"<a "
- "href=\"https://saturneric.github.io/GpgFrontend/index.html#/"
+ "href=\"https://gpgfrontend.bktus.com/manual/understand-interface"
"overview\">" +
tr("The Online Document") + "</a>" +
tr(" will get you started with GpgFrontend. Anytime you encounter "
"problems, please try to find help from the documentation") +
"<br>");
- bottomLabel->setTextFormat(Qt::RichText);
- bottomLabel->setTextInteractionFlags(Qt::TextBrowserInteraction);
- bottomLabel->setOpenExternalLinks(true);
- bottomLabel->setWordWrap(true);
+ bottom_label->setTextFormat(Qt::RichText);
+ bottom_label->setTextInteractionFlags(Qt::TextBrowserInteraction);
+ bottom_label->setOpenExternalLinks(true);
+ bottom_label->setWordWrap(true);
open_help_check_box_ = new QCheckBox(tr("Open offline help."));
open_help_check_box_->setChecked(true);
@@ -243,7 +243,7 @@ ConclusionPage::ConclusionPage(QWidget* parent) : QWizardPage(parent) {
// registerField("openHelp", openHelpCheckBox);
auto* layout = new QVBoxLayout;
- layout->addWidget(bottomLabel);
+ layout->addWidget(bottom_label);
// layout->addWidget(openHelpCheckBox);
layout->addWidget(dont_show_wizard_checkbox_);
setLayout(layout);