File indexing completed on 2024-06-09 05:03:27

0001 /*
0002     SPDX-FileCopyrightText: 2010 Fernando Vilas <kmymoney-devel@kde.org>
0003     SPDX-License-Identifier: GPL-2.0-or-later
0004 */
0005 
0006 #include "checkingstartwizardpage.h"
0007 
0008 // ----------------------------------------------------------------------------
0009 // QT Includes
0010 
0011 // ----------------------------------------------------------------------------
0012 // KDE Includes
0013 
0014 // ----------------------------------------------------------------------------
0015 // Project Includes
0016 
0017 #include "ui_checkingstartwizardpage.h"
0018 
0019 CheckingStartWizardPage::CheckingStartWizardPage(QWidget *parent) :
0020     QWizardPage(parent),
0021     ui(new Ui::CheckingStartWizardPage)
0022 {
0023     ui->setupUi(this);
0024     // Register the fields with the QWizard and connect the
0025     // appropriate signals to update the "Next" button correctly
0026 }
0027 
0028 CheckingStartWizardPage::~CheckingStartWizardPage()
0029 {
0030     delete ui;
0031 }