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:
authorNicolas Fella <nicolas.fella@gmx.de>2020-10-09 23:56:45 +0300
committerKevin Ottens (Rebase PR Action) <er-vin@users.noreply.github.com>2020-10-12 14:52:53 +0300
commit6f17bbe6d59b96b90c050fe9878fbcb1becd77ac (patch)
tree687082e75e858c1d6a1ef1abac24ef935763794b /src/gui/selectivesyncdialog.h
parent142894b2f7d052387c01b2dbbc29a0c259ad573b (diff)
Don't use nullptr for QFlags
This fixes some deprecation warnings Signed-off-by: Nicolas Fella <nicolas.fella@gmx.de>
Diffstat (limited to 'src/gui/selectivesyncdialog.h')
-rw-r--r--src/gui/selectivesyncdialog.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/selectivesyncdialog.h b/src/gui/selectivesyncdialog.h
index 3426ec550..7480f8986 100644
--- a/src/gui/selectivesyncdialog.h
+++ b/src/gui/selectivesyncdialog.h
@@ -89,10 +89,10 @@ class SelectiveSyncDialog : public QDialog
Q_OBJECT
public:
// Dialog for a specific folder (used from the account settings button)
- explicit SelectiveSyncDialog(AccountPtr account, Folder *folder, QWidget *parent = nullptr, Qt::WindowFlags f = nullptr);
+ explicit SelectiveSyncDialog(AccountPtr account, Folder *folder, QWidget *parent = nullptr, Qt::WindowFlags f = {});
// Dialog for the whole account (Used from the wizard)
- explicit SelectiveSyncDialog(AccountPtr account, const QString &folder, const QStringList &blacklist, QWidget *parent = nullptr, Qt::WindowFlags f = nullptr);
+ explicit SelectiveSyncDialog(AccountPtr account, const QString &folder, const QStringList &blacklist, QWidget *parent = nullptr, Qt::WindowFlags f = {});
void accept() override;