From 84e91772eb255076384c96f662b56a0fbdf635a4 Mon Sep 17 00:00:00 2001 From: Richard Kimberly Heck Date: Tue, 3 Mar 2020 00:08:46 -0500 Subject: [PATCH] Fix nullptr warning --- src/frontends/qt/GuiToc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontends/qt/GuiToc.h b/src/frontends/qt/GuiToc.h index f29a9af59c..48f68b3c9f 100644 --- a/src/frontends/qt/GuiToc.h +++ b/src/frontends/qt/GuiToc.h @@ -32,7 +32,7 @@ public: GuiToc( GuiView & parent, ///< the main window where to dock. Qt::DockWidgetArea area = Qt::LeftDockWidgetArea, ///< Position of the dock (and also drawer) - Qt::WindowFlags flags = 0); + Qt::WindowFlags flags = nullptr); /// bool initialiseParams(std::string const & data);