Skip to content

Commit

Permalink
fix 2
Browse files Browse the repository at this point in the history
  • Loading branch information
memurats committed Oct 25, 2024
1 parent 15ad579 commit 1a3c3b4
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 56 deletions.
7 changes: 3 additions & 4 deletions src/gui/nmcgui/nmcfolderwizardsourcepage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,9 @@

namespace OCC {

NMCFolderWizardSourcePage::NMCFolderWizardSourcePage()
:FolderWizardSourcePage()
{

NMCFolderWizardSourcePage::NMCFolderWizardSourcePage(QWidget *parent)
: QWidget(parent) {
setupUi(this);
}

void NMCFolderWizardSourcePage::setDefaultSettings()
Expand Down
49 changes: 25 additions & 24 deletions src/gui/nmcgui/nmcfolderwizardsourcepage.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
#ifndef MIRALL_NMCFolderWizardSourcePage_H
#define MIRALL_NMCFolderWizardSourcePage_H

#include <QWidget>
#include "ui_folderwizardsourcepage.h"

/**
Expand All @@ -27,30 +28,30 @@

namespace OCC {

class NMCFolderWizardSourcePage : public ::Ui::FolderWizardSourcePage
{

public:
/**
* @brief Constructs an instance of NMCFolderWizardSourcePage.
*/
explicit NMCFolderWizardSourcePage();

/**
* @brief Destroys the NMCFolderWizardSourcePage instance.
*/
~NMCFolderWizardSourcePage() = default;

/**
* @brief Sets default settings for the NMCFolderWizardSourcePage.
*/
void setDefaultSettings();

/**
* @brief Changes the layout of the NMCFolderWizardSourcePage.
*/
void changeLayout();
};
class NMCFolderWizardSourcePage : public QWidget, private Ui::FolderWizardSourcePage {
Q_OBJECT

public:
/**
* @brief Constructs an instance of NMCFolderWizardSourcePage.
*/
explicit NMCFolderWizardSourcePage(QWidget *parent = nullptr);

/**
* @brief Destroys the NMCFolderWizardSourcePage instance.
*/
~NMCFolderWizardSourcePage() = default;

/**
* @brief Sets default settings for the NMCFolderWizardSourcePage.
*/
void setDefaultSettings();

/**
* @brief Changes the layout of the NMCFolderWizardSourcePage.
*/
void changeLayout();
};

} // namespace OCC

Expand Down
6 changes: 3 additions & 3 deletions src/gui/nmcgui/nmcfolderwizardtargetpage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@

namespace OCC {

NMCFolderWizardTargetPage::NMCFolderWizardTargetPage()
:Ui::FolderWizardTargetPage()
{
NMCFolderWizardTargetPage::NMCFolderWizardTargetPage(QWidget *parent)
: QWidget(parent) {
setupUi(this);
}

void NMCFolderWizardTargetPage::setDefaultSettings()
Expand Down
50 changes: 25 additions & 25 deletions src/gui/nmcgui/nmcfolderwizardtargetpage.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
#ifndef MIRALL_NMCFolderWizardTargetPage_H
#define MIRALL_NMCFolderWizardTargetPage_H

#include <QWidget>
#include "ui_folderwizardtargetpage.h"

/**
Expand All @@ -26,31 +27,30 @@
*/

namespace OCC {

class NMCFolderWizardTargetPage : public ::Ui::FolderWizardTargetPage
{

public:
/**
* @brief Constructs an instance of NMCFolderWizardTargetPage.
*/
explicit NMCFolderWizardTargetPage();

/**
* @brief Destroys the NMCFolderWizardTargetPage instance.
*/
~NMCFolderWizardTargetPage() = default;

/**
* @brief Sets default settings for the NMCFolderWizardTargetPage.
*/
void setDefaultSettings();

/**
* @brief Sets the layout for the NMCFolderWizardTargetPage.
*/
void setLayout();
};
class NMCFolderWizardTargetPage : public QWidget, private Ui::FolderWizardTargetPage {
Q_OBJECT

public:
/**
* @brief Constructs an instance of NMCFolderWizardTargetPage.
*/
NMCFolderWizardTargetPage(QWidget *parent = nullptr);

/**
* @brief Destroys the NMCFolderWizardTargetPage instance.
*/
~NMCFolderWizardTargetPage() = default;

/**
* @brief Sets default settings for the NMCFolderWizardTargetPage.
*/
void setDefaultSettings();

/**
* @brief Sets the layout for the NMCFolderWizardTargetPage.
*/
void setLayout();
};

} // namespace OCC

Expand Down

0 comments on commit 1a3c3b4

Please sign in to comment.