Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
Kleopatra
Commits
1fa15067
Unverified
Commit
1fa15067
authored
Aug 29, 2022
by
Andre Heinecke
Browse files
Fix bug report url for signed Windows versions
The old general ifdef for Windows overwrote the new dynamic value.
parent
f136c6c9
Pipeline
#224636
passed with stage
in 3 minutes and 21 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/aboutdata.cpp
View file @
1fa15067
...
...
@@ -102,6 +102,10 @@ AboutData::AboutData()
}
else
{
setBugAddress
(
"https://gnupg.com/vsd/report.html"
);
}
}
else
{
#ifdef Q_OS_WIN
setBugAddress
(
"https://dev.gnupg.org/u/rgpg4win"
);
#endif
}
const
auto
backendVersions
=
Kleo
::
backendVersionInfo
();
...
...
@@ -113,7 +117,4 @@ AboutData::AboutData()
QLatin1String
{
"</li></ul>"
}
+
otherText
());
}
#ifdef Q_OS_WIN
setBugAddress
(
"https://dev.gnupg.org/u/rgpg4win"
);
#endif
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment