File indexing completed on 2024-05-12 04:38:19

0001 /*
0002     SPDX-FileCopyrightText: 2017 Friedrich W. H. Kossebau <kossebau@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #include "runtimespreferences.h"
0008 
0009 #include <QIcon>
0010 
0011 namespace KDevelop
0012 {
0013 
0014 RuntimesPreferences::RuntimesPreferences(QWidget* parent)
0015     : ConfigPage(nullptr, nullptr, parent)
0016 {
0017 }
0018 
0019 RuntimesPreferences::~RuntimesPreferences() = default;
0020 
0021 QString RuntimesPreferences::name() const
0022 {
0023     return i18n("Runtimes");
0024 }
0025 
0026 QIcon RuntimesPreferences::icon() const
0027 {
0028     return QIcon::fromTheme(QStringLiteral("file-library-symbolic"));
0029 }
0030 
0031 QString RuntimesPreferences::fullName() const
0032 {
0033     return i18n("Configure Runtimes");
0034 }
0035 
0036 void RuntimesPreferences::apply()
0037 {
0038 }
0039 
0040 void RuntimesPreferences::defaults()
0041 {
0042 }
0043 
0044 void RuntimesPreferences::reset()
0045 {
0046 }
0047 
0048 }
0049 
0050 #include "moc_runtimespreferences.cpp"