summaryrefslogtreecommitdiff
path: root/window.h
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-12-24 15:01:17 +0000
committertron <tron@openttd.org>2005-12-24 15:01:17 +0000
commit849fff602da7a77fd21dbcd478d86ee8ed1cf5e1 (patch)
treef0efaf93c42b83b79f0fe76a8914e14f03177f68 /window.h
parent2349392eb789f5cae5b1f0017df3d9ef81928bdb (diff)
downloadopenttd-849fff602da7a77fd21dbcd478d86ee8ed1cf5e1.tar.xz
(svn r3336) byte -> WindowClass, uint16 -> WindowNumber
Diffstat (limited to 'window.h')
-rw-r--r--window.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/window.h b/window.h
index f23906a14..1a0bf3e87 100644
--- a/window.h
+++ b/window.h
@@ -212,8 +212,8 @@ enum WindowKeyCodes {
typedef struct WindowDesc {
int16 left, top, width, height;
- byte cls;
- byte parent_cls;
+ WindowClass cls;
+ WindowClass parent_cls;
uint32 flags;
const Widget *widgets;
WindowProc *proc;