File indexing completed on 2024-12-22 05:17:14
0001 /* 0002 * This file is part of the KDE wacomtablet project. For copyright 0003 * information and license terms see the AUTHORS and COPYING files 0004 * in the top-level directory of this distribution. 0005 * 0006 * This program is free software; you can redistribute it and/or 0007 * modify it under the terms of the GNU General Public License as 0008 * published by the Free Software Foundation; either version 2 of 0009 * the License, or (at your option) any later version. 0010 * 0011 * This program is distributed in the hope that it will be useful, 0012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 0013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 0014 * GNU General Public License for more details. 0015 * 0016 * You should have received a copy of the GNU General Public License 0017 * along with this program. If not, see <http://www.gnu.org/licenses/>. 0018 */ 0019 0020 #include "aboutdata.h" 0021 0022 #include <KLocalizedString> 0023 0024 using namespace Wacom; 0025 0026 AboutData::AboutData(const QString &componentName, 0027 const QString &displayName, 0028 const QString &version, 0029 const QString &shortDescription, 0030 const QString &otherText) 0031 : KAboutData(componentName, 0032 displayName, 0033 version, 0034 shortDescription, 0035 KAboutLicense::GPL, 0036 i18n("(c), 2009,2010 Jörg Ehrichs"), 0037 otherText, 0038 QLatin1String("https://kde.org/applications/system/org.kde.wacomtablet")) 0039 { 0040 addAuthor(i18n("Jörg Ehrichs"), i18n("Maintainer"), QLatin1String("joerg.ehrichs@gmx.de")); 0041 addAuthor(i18n("Alexander Maret-Huskinson"), i18n("Developer"), QLatin1String("alex@maret.de")); 0042 }