From f411040a338a5b4ac88f0ffdc892e0dacfea0c41 Mon Sep 17 00:00:00 2001 From: Scott Kostyshak Date: Sun, 9 Oct 2016 18:04:41 -0400 Subject: [PATCH] Further amend 168d3557 to satisfy GCC 4.6 GCC 4.6 does not support non-static data member initializers. As Guillaume points out, changing to static does not change the intent. --- src/frontends/qt4/GuiView.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontends/qt4/GuiView.h b/src/frontends/qt4/GuiView.h index a84b738225..d396421a61 100644 --- a/src/frontends/qt4/GuiView.h +++ b/src/frontends/qt4/GuiView.h @@ -462,7 +462,7 @@ private: QLabel * version_control_; /// Minimum zoom percentage - unsigned int const zoom_min_ = 10; + static unsigned int const zoom_min_ = 10; }; -- 2.39.2