Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
Itinerary
Commits
8a25d709
Commit
8a25d709
authored
Sep 01, 2021
by
Volker Krause
Browse files
Extend KAboutData content
Part of exploring switching to the Kirigami default about page.
parent
ed56d446
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/app/main.cpp
View file @
8a25d709
...
...
@@ -224,7 +224,10 @@ int main(int argc, char **argv)
auto
aboutData
=
KAboutData
::
applicationData
();
aboutData
.
setProductName
(
"KDE Itinerary/general"
);
// Bugzilla product/component name
aboutData
.
setLicense
(
KAboutLicense
::
LGPL
);
aboutData
.
setLicense
(
KAboutLicense
::
LGPL_V2
,
KAboutLicense
::
OrLaterVersions
);
aboutData
.
setHomepage
(
QStringLiteral
(
"https://apps.kde.org/itinerary"
));
aboutData
.
setShortDescription
(
i18n
(
"Digital Travel Assistant"
));
aboutData
.
setCopyrightStatement
(
i18n
(
"Copyright © 2018-2021 The KDE Community"
));
KAboutData
::
setApplicationData
(
aboutData
);
QCommandLineParser
parser
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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