diff --git a/configuration/akregator_config_userfeedback.cpp b/configuration/akregator_config_userfeedback.cpp index c610dddf..45f8ad94 100644 --- a/configuration/akregator_config_userfeedback.cpp +++ b/configuration/akregator_config_userfeedback.cpp @@ -1,70 +1,70 @@ /* Copyright (C) 2020 Laurent Montel This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "akregator_config_userfeedback.h" #include #include #include #include #ifdef WITH_KUSERFEEDBACK #include #include "userfeedback/userfeedbackmanager.h" #endif using namespace KAddressBook; K_PLUGIN_FACTORY(KCMAkregatorUserFeedBackConfigFactory, registerPlugin(); ) KCMAkregatorUserFeedBackConfig::KCMAkregatorUserFeedBackConfig(QWidget *parent, const QVariantList &args) : KCModule(parent, args) { QHBoxLayout *lay = new QHBoxLayout(this); lay->setContentsMargins(0, 0, 0, 0); KAboutData *about = new KAboutData(QStringLiteral("kcmaddressbookuserfeedbackconfig"), - i18n("Configure User FeedBack"), + i18n("Configure User Feedback"), QString(), QString(), KAboutLicense::GPL, i18n("(c), 2020 Laurent Montel")); about->addAuthor(i18n("Laurent Montel"), QString(), QStringLiteral("montel@kde.org")); setAboutData(about); mUserFeedbackWidget = new KUserFeedback::FeedbackConfigWidget(this); connect(mUserFeedbackWidget, &KUserFeedback::FeedbackConfigWidget::configurationChanged, this, &KCMAkregatorUserFeedBackConfig::markAsChanged); lay->addWidget(mUserFeedbackWidget); mUserFeedbackWidget->setFeedbackProvider(UserFeedBackManager::self()->userFeedbackProvider()); } void KCMAkregatorUserFeedBackConfig::save() { UserFeedBackManager::self()->userFeedbackProvider()->setTelemetryMode(mUserFeedbackWidget->telemetryMode()); UserFeedBackManager::self()->userFeedbackProvider()->setSurveyInterval(mUserFeedbackWidget->surveyInterval()); } void KCMAkregatorUserFeedBackConfig::load() { } void KCMAkregatorUserFeedBackConfig::defaults() { } #include "akregator_config_userfeedback.moc"