File indexing completed on 2024-05-05 05:45:47

0001 /*
0002     SPDX-FileCopyrightText: 2001-2003 Otto Bruggeman <otto.bruggeman@home.nl>
0003     SPDX-FileCopyrightText: 2001-2003 John Firebaugh <jfirebaugh@kde.org>
0004     SPDX-FileCopyrightText: 2007-2011 Kevin Kofler <kevin.kofler@chello.at>
0005 
0006     SPDX-License-Identifier: GPL-2.0-or-later
0007 */
0008 
0009 #include "komparesaveoptionsbase.h"
0010 
0011 #include <QVariant>
0012 /*
0013  *  Constructs a KompareSaveOptionsBase as a child of 'parent', with the
0014  *  name 'name' and widget flags set to 'f'.
0015  */
0016 KompareSaveOptionsBase::KompareSaveOptionsBase(QWidget* parent)
0017     : QWidget(parent)
0018 {
0019     setupUi(this);
0020 
0021 }
0022 
0023 /*
0024  *  Destroys the object and frees any allocated resources
0025  */
0026 KompareSaveOptionsBase::~KompareSaveOptionsBase()
0027 {
0028     // no need to delete child widgets, Qt does it all for us
0029 }
0030 
0031 /*
0032  *  Sets the strings of the subwidgets using the current
0033  *  language.
0034  */
0035 void KompareSaveOptionsBase::languageChange()
0036 {
0037     retranslateUi(this);
0038 }
0039 
0040 #include "moc_komparesaveoptionsbase.cpp"