Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Thomas Schöps
kdevelop
Commits
9339d4f7
Commit
9339d4f7
authored
Jul 21, 2019
by
Friedrich W. H. Kossebau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
app, kdevplatform about: extend copyright years to 2019, make extendable
parent
8a263a0e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
app/main.cpp
app/main.cpp
+2
-2
kdevplatform/shell/core.cpp
kdevplatform/shell/core.cpp
+1
-1
No files found.
app/main.cpp
View file @
9339d4f7
...
...
@@ -391,8 +391,8 @@ int main( int argc, char *argv[] )
KAboutData
aboutData
(
QStringLiteral
(
"kdevelop"
),
i18n
(
"KDevelop"
),
QStringLiteral
(
KDEVELOP_VERSION_STRING
),
i18n
(
"The KDevelop Integrated Development Environment"
),
KAboutLicense
::
GPL
,
i18n
(
"Copyright 1999-2018, The KDevelop developers"
),
QString
(),
QStringLiteral
(
"https://www.kdevelop.org/"
));
KAboutLicense
::
GPL
,
i18n
(
"Copyright 1999-%1, The KDevelop developers"
,
2019
),
QString
(),
QStringLiteral
(
"https://www.kdevelop.org/"
));
aboutData
.
setDesktopFileName
(
QStringLiteral
(
"org.kde.kdevelop"
));
aboutData
.
addAuthor
(
i18n
(
"Kevin Funk"
),
i18n
(
"Co-maintainer, C++/Clang, QA, Windows Support"
),
QStringLiteral
(
"kfunk@kde.org"
)
);
aboutData
.
addAuthor
(
i18n
(
"Sven Brauch"
),
i18n
(
"Co-maintainer, AppImage, Python Support, User Interface improvements"
),
QStringLiteral
(
"svenbrauch@gmail.com"
)
);
...
...
kdevplatform/shell/core.cpp
View file @
9339d4f7
...
...
@@ -94,7 +94,7 @@ KAboutData createAboutData()
KAboutData
aboutData
(
QStringLiteral
(
"kdevplatform"
),
i18n
(
"KDevelop Platform"
),
QStringLiteral
(
KDEVPLATFORM_VERSION_STRING
),
i18n
(
"Development Platform for IDE-like Applications"
),
KAboutLicense
::
LGPL_V2
,
i18n
(
"Copyright 2004-
2018
, The KDevelop developers"
),
KAboutLicense
::
LGPL_V2
,
i18n
(
"Copyright 2004-
%1
, The KDevelop developers"
,
2019
),
QString
(),
QStringLiteral
(
"https://www.kdevelop.org/"
));
aboutData
.
addAuthor
(
i18n
(
"Andreas Pakulat"
),
i18n
(
"Architecture, VCS Support, Project Management Support, QMake Projectmanager"
),
QStringLiteral
(
"apaku@gmx.de"
)
);
...
...
Write
Preview
Markdown
is supported
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