Update KAboutData
Summary: This change updates the copyright statement and adds a few folks who are considered to be kwin maintainers. Test Plan: Compiles. Reviewers: davidedmundson, romangg Reviewed By: davidedmundson, romangg Subscribers: kwin Tags: #kwin Differential Revision: https://phabricator.kde.org/D25646
This commit is contained in:
parent
0fcc20b51b
commit
f21f61db38
1 changed files with 4 additions and 1 deletions
5
main.cpp
5
main.cpp
|
@ -193,13 +193,16 @@ void Application::createAboutData()
|
||||||
QStringLiteral(KWIN_VERSION_STRING), // The program version string
|
QStringLiteral(KWIN_VERSION_STRING), // The program version string
|
||||||
i18n(description), // Short description of what the app does
|
i18n(description), // Short description of what the app does
|
||||||
KAboutLicense::GPL, // The license this code is released under
|
KAboutLicense::GPL, // The license this code is released under
|
||||||
i18n("(c) 1999-2018, The KDE Developers")); // Copyright Statement
|
i18n("(c) 1999-2019, The KDE Developers")); // Copyright Statement
|
||||||
|
|
||||||
aboutData.addAuthor(i18n("Matthias Ettrich"), QString(), QStringLiteral("ettrich@kde.org"));
|
aboutData.addAuthor(i18n("Matthias Ettrich"), QString(), QStringLiteral("ettrich@kde.org"));
|
||||||
aboutData.addAuthor(i18n("Cristian Tibirna"), QString(), QStringLiteral("tibirna@kde.org"));
|
aboutData.addAuthor(i18n("Cristian Tibirna"), QString(), QStringLiteral("tibirna@kde.org"));
|
||||||
aboutData.addAuthor(i18n("Daniel M. Duley"), QString(), QStringLiteral("mosfet@kde.org"));
|
aboutData.addAuthor(i18n("Daniel M. Duley"), QString(), QStringLiteral("mosfet@kde.org"));
|
||||||
aboutData.addAuthor(i18n("Luboš Luňák"), QString(), QStringLiteral("l.lunak@kde.org"));
|
aboutData.addAuthor(i18n("Luboš Luňák"), QString(), QStringLiteral("l.lunak@kde.org"));
|
||||||
aboutData.addAuthor(i18n("Martin Flöser"), QString(), QStringLiteral("mgraesslin@kde.org"));
|
aboutData.addAuthor(i18n("Martin Flöser"), QString(), QStringLiteral("mgraesslin@kde.org"));
|
||||||
|
aboutData.addAuthor(i18n("David Edmundson"), QStringLiteral("Maintainer"), QStringLiteral("davidedmundson@kde.org"));
|
||||||
|
aboutData.addAuthor(i18n("Roman Gilg"), QStringLiteral("Maintainer"), QStringLiteral("subdiff@gmail.com"));
|
||||||
|
aboutData.addAuthor(i18n("Vlad Zahorodnii"), QStringLiteral("Maintainer"), QStringLiteral("vladzzag@gmail.com"));
|
||||||
KAboutData::setApplicationData(aboutData);
|
KAboutData::setApplicationData(aboutData);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue