You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

28 lines
825 B

/*
SPDX-FileCopyrightText: 2019-2020 Laurent Montel <montel@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "refreshsettingsfirstpage.h"
#include <QLabel>
#include <QHBoxLayout>
#include <KLocalizedString>
RefreshSettingsFirstPage::RefreshSettingsFirstPage(QWidget *parent)
: QWidget(parent)
{
auto *mainLayout = new QHBoxLayout(this);
mainLayout->setObjectName(QStringLiteral("mainLayout"));
mainLayout->setContentsMargins({});
QLabel *label = new QLabel(i18n("Please close KMail/Kontact before using it."));
QFont f = label->font();
f.setBold(true);
f.setPointSize(22);
label->setFont(f);
label->setObjectName(QStringLiteral("label"));
mainLayout->addWidget(label, 0, Qt::AlignHCenter);
}
RefreshSettingsFirstPage::~RefreshSettingsFirstPage()
= default;