# HG changeset patch # User smatz # Date 2009-09-01 21:27:33 # Node ID c93c8cad687437f9e257215767b0c131893ab317 # Parent 04df3bf28075be8e3021d0a5478618679e6a4d7e (svn r17359) -Fix: put static before cv qualifier, some compilers complain about that diff --git a/src/misc_gui.cpp b/src/misc_gui.cpp --- a/src/misc_gui.cpp +++ b/src/misc_gui.cpp @@ -408,7 +408,7 @@ struct AboutWindow : public Window { int text_position; ///< The top of the scrolling text byte counter; ///< Used to scroll the text every 5 ticks int line_height; ///< The height of a single line - const static int num_visible_lines = 19; ///< The number of lines visible simultaneously + static const int num_visible_lines = 19; ///< The number of lines visible simultaneously AboutWindow() : Window() {