Skip to content

Commit

Permalink
testfix 1
Browse files Browse the repository at this point in the history
  • Loading branch information
memurats committed Oct 25, 2024
1 parent 79fe3f2 commit 838ebc8
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions src/gui/folderwizard.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,7 @@ class FolderWizardLocalPath : public FormatWarningsWizardPage

void setFolderMap(const Folder::Map &fm) { _folderMap = fm; }

NMCFolderWizardSourcePage getUi()
{
return _ui;
}
NMCFolderWizardSourcePage& getUi() const { return *_ui; };

protected:
void changeEvent(QEvent *) override;
Expand Down Expand Up @@ -99,10 +96,7 @@ class FolderWizardRemotePath : public FormatWarningsWizardPage
void initializePage() override;
void cleanupPage() override;

NMCFolderWizardTargetPage getUi()
{
return _ui;
};
NMCFolderWizardTargetPage& getUi() const { return *_ui; };

protected slots:
void showWarn(const QString & = QString()) const;
Expand Down

0 comments on commit 838ebc8

Please sign in to comment.