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.
29 lines
833 B
29 lines
833 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) |
|
{ |
|
QHBoxLayout *mainLayout = new QHBoxLayout(this); |
|
mainLayout->setObjectName(QStringLiteral("mainLayout")); |
|
mainLayout->setContentsMargins(0, 0, 0, 0); |
|
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() |
|
{ |
|
}
|
|
|