diff --git a/autotests/gravatarconfiguresettingsdialogtest.cpp b/autotests/gravatarconfiguresettingsdialogtest.cpp --- a/autotests/gravatarconfiguresettingsdialogtest.cpp +++ b/autotests/gravatarconfiguresettingsdialogtest.cpp @@ -50,10 +50,6 @@ KPluralHandlingSpinBox *gravatarCacheSize = dlg.findChild(QStringLiteral("gravatarcachesize")); QVERIFY(gravatarCacheSize); - QLabel *label = dlg.findChild(QStringLiteral("labelwarning")); - QVERIFY(label); - QVERIFY(!label->text().isEmpty()); - KSeparator *separator = dlg.findChild(QStringLiteral("separator")); QVERIFY(separator); diff --git a/src/widgets/gravatarconfiguresettingsdialog.cpp b/src/widgets/gravatarconfiguresettingsdialog.cpp --- a/src/widgets/gravatarconfiguresettingsdialog.cpp +++ b/src/widgets/gravatarconfiguresettingsdialog.cpp @@ -51,10 +51,6 @@ mUseDefaultPixmap->setObjectName(QStringLiteral("usedefaultimage")); topLayout->addWidget(mUseDefaultPixmap); - QLabel *label = new QLabel(i18n("Libravatar will be shutdown the 1st september 2018"), this); - label->setObjectName(QStringLiteral("labelwarning")); - topLayout->addWidget(label); - QHBoxLayout *cacheSizeLayout = new QHBoxLayout; topLayout->addLayout(cacheSizeLayout); QLabel *lab = new QLabel(i18n("Gravatar Cache Size:"), this);