summaryrefslogtreecommitdiff
path: root/src/window_gui.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-05-18 20:40:30 +0000
committerrubidium <rubidium@openttd.org>2008-05-18 20:40:30 +0000
commit6da56ee87ed7131b0c8e47d8924e5305ea8c0dd2 (patch)
tree41abfe9b87f469f713f101ff0e28d4bcf1c50545 /src/window_gui.h
parent9aa69db2e6352bf81df189c70ba2719bbdc38c31 (diff)
downloadopenttd-6da56ee87ed7131b0c8e47d8924e5305ea8c0dd2.tar.xz
(svn r13169) -Codechange: remove a (now) unneeded parameter of one of the Window constructors.
Diffstat (limited to 'src/window_gui.h')
-rw-r--r--src/window_gui.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window_gui.h b/src/window_gui.h
index f1e8ed21f..66ce5a0eb 100644
--- a/src/window_gui.h
+++ b/src/window_gui.h
@@ -282,7 +282,7 @@ protected:
void FindWindowPlacementAndResize(const WindowDesc *desc);
public:
- Window(int x, int y, int width, int height, WindowProc *proc, WindowClass cls, const Widget *widget);
+ Window(int x, int y, int width, int height, WindowClass cls, const Widget *widget);
Window(const WindowDesc *desc, WindowNumber number = 0);
virtual ~Window();