diff options
author | rubidium <rubidium@openttd.org> | 2008-05-04 09:39:16 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-05-04 09:39:16 +0000 |
commit | b35100e2a9b109581086a078f9adec0addd7284f (patch) | |
tree | cf16c5b3b35ed64652f1699c981d1887983cc39c /src/rail_gui.cpp | |
parent | ec931ba5c66c43c1977ed0b7f36c323df269485a (diff) | |
download | openttd-b35100e2a9b109581086a078f9adec0addd7284f.tar.xz |
(svn r12939) -Codechange: do not use the window proc to determine whether a toolbar is a rail toolbar, but use the window number.
Diffstat (limited to 'src/rail_gui.cpp')
-rw-r--r-- | src/rail_gui.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/rail_gui.cpp b/src/rail_gui.cpp index 748c74249..840bf8062 100644 --- a/src/rail_gui.cpp +++ b/src/rail_gui.cpp @@ -748,10 +748,10 @@ void ShowBuildRailToolbar(RailType railtype, int button) if (!ValParamRailtype(railtype)) return; // don't recreate the window if we're clicking on a button and the window exists. - if (button < 0 || !(w = FindWindowById(WC_BUILD_TOOLBAR, 0)) || w->wndproc != BuildRailToolbWndProc) { - DeleteWindowById(WC_BUILD_TOOLBAR, 0); + if (button < 0 || !(w = FindWindowById(WC_BUILD_TOOLBAR, TRANSPORT_RAIL))) { + DeleteWindowByClass(WC_BUILD_TOOLBAR); _cur_railtype = railtype; - w = AllocateWindowDesc(&_build_rail_desc); + w = AllocateWindowDescFront(&_build_rail_desc, TRANSPORT_RAIL); SetupRailToolbar(railtype, w); } @@ -1597,8 +1597,8 @@ void ReinitGuiAfterToggleElrail(bool disable) if (disable && _last_built_railtype == RAILTYPE_ELECTRIC) { Window *w; _last_built_railtype = _cur_railtype = RAILTYPE_RAIL; - w = FindWindowById(WC_BUILD_TOOLBAR, 0); - if (w != NULL && w->wndproc == BuildRailToolbWndProc) { + w = FindWindowById(WC_BUILD_TOOLBAR, TRANSPORT_RAIL); + if (w != NULL) { SetupRailToolbar(_cur_railtype, w); SetWindowDirty(w); } @@ -1648,8 +1648,8 @@ static void SetDefaultRailGui() } _last_built_railtype = _cur_railtype = rt; - Window *w = FindWindowById(WC_BUILD_TOOLBAR, 0); - if (w != NULL && w->wndproc == BuildRailToolbWndProc) { + Window *w = FindWindowById(WC_BUILD_TOOLBAR, TRANSPORT_RAIL); + if (w != NULL) { SetupRailToolbar(_cur_railtype, w); SetWindowDirty(w); } |