From: Scott Kostyshak Date: Sun, 9 Oct 2016 22:04:41 +0000 (-0400) Subject: Further amend 168d3557 to satisfy GCC 4.6 X-Git-Tag: 2.3.0alpha1~909 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=f411040a338a5b4ac88f0ffdc892e0dacfea0c41;p=lyx.git 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. --- 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; };