File indexing completed on 2024-05-05 05:50:42

0001 /*
0002     SPDX-FileCopyrightText: 2016 Elvis Angelaccio <elvis.angelaccio@kde.org>
0003 
0004     SPDX-License-Identifier: BSD-2-Clause
0005 */
0006 
0007 #include "settingsdialog.h"
0008 
0009 namespace Kerfuffle
0010 {
0011 SettingsDialog::SettingsDialog(QWidget *parent, const QString &name, KCoreConfigSkeleton *config)
0012     : KConfigDialog(parent, name, config)
0013 {
0014 }
0015 
0016 void SettingsDialog::updateWidgetsDefault()
0017 {
0018     Q_EMIT defaultsButtonClicked();
0019 }
0020 
0021 }
0022 
0023 #include "moc_settingsdialog.cpp"