Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@gmail.com>2018-11-11 13:09:29 +0300
committerJ-P Nurmi <jpnurmi@gmail.com>2018-11-11 13:12:37 +0300
commitfff64e8aa5f3fae5942fd12b286842e512b4bd24 (patch)
tree72b092d95f1c3e7a96467396e14cb1bfa87a4100 /src/gui/folderwizard.h
parent8e38e2ac86a40f21dc3eb54d7440aad36e795810 (diff)
GUI: search'n'replace remaining "Q_DECL_OVERRIDE" with "override"
Diffstat (limited to 'src/gui/folderwizard.h')
-rw-r--r--src/gui/folderwizard.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/gui/folderwizard.h b/src/gui/folderwizard.h
index 9376835d3..e3b29d6f7 100644
--- a/src/gui/folderwizard.h
+++ b/src/gui/folderwizard.h
@@ -53,9 +53,9 @@ public:
explicit FolderWizardLocalPath(const AccountPtr &account);
~FolderWizardLocalPath();
- bool isComplete() const Q_DECL_OVERRIDE;
- void initializePage() Q_DECL_OVERRIDE;
- void cleanupPage() Q_DECL_OVERRIDE;
+ bool isComplete() const override;
+ void initializePage() override;
+ void cleanupPage() override;
void setFolderMap(const Folder::Map &fm) { _folderMap = fm; }
protected slots:
@@ -80,10 +80,10 @@ public:
explicit FolderWizardRemotePath(const AccountPtr &account);
~FolderWizardRemotePath();
- bool isComplete() const Q_DECL_OVERRIDE;
+ bool isComplete() const override;
- void initializePage() Q_DECL_OVERRIDE;
- void cleanupPage() Q_DECL_OVERRIDE;
+ void initializePage() override;
+ void cleanupPage() override;
protected slots:
@@ -123,10 +123,10 @@ public:
explicit FolderWizardSelectiveSync(const AccountPtr &account);
~FolderWizardSelectiveSync();
- bool validatePage() Q_DECL_OVERRIDE;
+ bool validatePage() override;
- void initializePage() Q_DECL_OVERRIDE;
- void cleanupPage() Q_DECL_OVERRIDE;
+ void initializePage() override;
+ void cleanupPage() override;
private:
SelectiveSyncWidget *_selectiveSync;