diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-04-04 13:47:31 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-04-04 13:47:31 +0200 |
commit | 4aed49a70fe2e4fa3600b31525766c52bff52e3d (patch) | |
tree | d17c4a960f4fea8c4020c0b5b6eba1d951fe25da /source/UI/Window.h | |
parent | Fixed CreateHexDump() filling the string with garbage (diff) | |
download | cuberite-4aed49a70fe2e4fa3600b31525766c52bff52e3d.tar cuberite-4aed49a70fe2e4fa3600b31525766c52bff52e3d.tar.gz cuberite-4aed49a70fe2e4fa3600b31525766c52bff52e3d.tar.bz2 cuberite-4aed49a70fe2e4fa3600b31525766c52bff52e3d.tar.lz cuberite-4aed49a70fe2e4fa3600b31525766c52bff52e3d.tar.xz cuberite-4aed49a70fe2e4fa3600b31525766c52bff52e3d.tar.zst cuberite-4aed49a70fe2e4fa3600b31525766c52bff52e3d.zip |
Diffstat (limited to '')
-rw-r--r-- | source/UI/Window.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/UI/Window.h b/source/UI/Window.h index 1c5fe4084..c119d79ab 100644 --- a/source/UI/Window.h +++ b/source/UI/Window.h @@ -62,7 +62,7 @@ public: char GetWindowID(void) const { return m_WindowID; } int GetWindowType(void) const { return m_WindowType; } - cWindowOwner * GetOwner() { return m_Owner; } + cWindowOwner * GetOwner(void) { return m_Owner; } void SetOwner( cWindowOwner * a_Owner ) { m_Owner = a_Owner; } int GetNumSlots(void) const; |