aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMathias Gumz <akira@fluxbox.org>2015-01-28 20:44:20 (GMT)
committerMathias Gumz <akira@fluxbox.org>2015-01-28 20:44:20 (GMT)
commit8e5a10ea6c7384a92f572863e12d3c578c06c023 (patch)
tree17fcded5740ad73efcd1c323bd2d1e9b9377f235 /src
parent876500a25936738f45794a6fa94795e60c170a38 (diff)
downloadfluxbox-8e5a10ea6c7384a92f572863e12d3c578c06c023.zip
fluxbox-8e5a10ea6c7384a92f572863e12d3c578c06c023.tar.bz2
Compiler boyscouting: init order
Diffstat (limited to 'src')
-rw-r--r--src/FbTk/Menu.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/FbTk/Menu.cc b/src/FbTk/Menu.cc
index 7172fe7..539c72c 100644
--- a/src/FbTk/Menu.cc
+++ b/src/FbTk/Menu.cc
@@ -221,13 +221,13 @@ void Menu::hideShownMenu() {
221 221
222 222
223Menu::Menu(FbTk::ThemeProxy<MenuTheme> &tm, ImageControl &imgctrl): 223Menu::Menu(FbTk::ThemeProxy<MenuTheme> &tm, ImageControl &imgctrl):
224 m_theme(tm),
225 m_parent(0), 224 m_parent(0),
226 m_image_ctrl(imgctrl), 225 m_need_update(true),
227 m_alignment(ALIGNDONTCARE),
228 m_active_index(-1), 226 m_active_index(-1),
227 m_theme(tm),
228 m_image_ctrl(imgctrl),
229 m_shape(0), 229 m_shape(0),
230 m_need_update(true) { 230 m_alignment(ALIGNDONTCARE) {
231 231
232 Display* disp = FbTk::App::instance()->display(); 232 Display* disp = FbTk::App::instance()->display();
233 m_screen.x = 0; 233 m_screen.x = 0;