┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphindockwidget.h
diff options
context:
space:
mode:
authorLaurent Montel <[email protected]>2019-12-26 14:23:45 +0100
committerLaurent Montel <[email protected]>2019-12-26 14:23:45 +0100
commit984e8686e8fffb7e0945fae80e310aef52d804a6 (patch)
treeaa61ca512912cb0e677662c926cf35d50fd23c17 /src/dolphindockwidget.h
parent61edac18424908c0184d66fc8cfa87f36bb7d470 (diff)
Don't use nullptr/0 as flags (deprecated in qt5.15)
Diffstat (limited to 'src/dolphindockwidget.h')
-rw-r--r--src/dolphindockwidget.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphindockwidget.h b/src/dolphindockwidget.h
index 0b745f083..fd3882612 100644
--- a/src/dolphindockwidget.h
+++ b/src/dolphindockwidget.h
@@ -30,7 +30,7 @@ class DolphinDockWidget : public QDockWidget
Q_OBJECT
public:
- explicit DolphinDockWidget(const QString& title = QString(), QWidget* parent = nullptr, Qt::WindowFlags flags = nullptr);
+ explicit DolphinDockWidget(const QString& title = QString(), QWidget* parent = nullptr, Qt::WindowFlags flags = {});
~DolphinDockWidget() override;
/**