summaryrefslogtreecommitdiff
path: root/src/osk_gui.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-05-08 11:31:41 +0000
committerrubidium <rubidium@openttd.org>2008-05-08 11:31:41 +0000
commit51cda2252ceb088d75f25074f1e83e8eec5f18b6 (patch)
tree34abcc3662d6f35a9ace2d7f77586e68242b96e7 /src/osk_gui.cpp
parent5a7fcf9aa3ce17e9f8602a682171b30cc8b1a786 (diff)
downloadopenttd-51cda2252ceb088d75f25074f1e83e8eec5f18b6.tar.xz
(svn r13004) -Codechange: replace AllocateWindow and AllocateWindowDesc with a Window constructor.
Diffstat (limited to 'src/osk_gui.cpp')
-rw-r--r--src/osk_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osk_gui.cpp b/src/osk_gui.cpp
index 1bc3a2738..681762e08 100644
--- a/src/osk_gui.cpp
+++ b/src/osk_gui.cpp
@@ -349,7 +349,7 @@ void ShowOnScreenKeyboard(Window *parent, querystr_d *q, int button, int cancel,
{
DeleteWindowById(WC_OSK, 0);
- Window *w = AllocateWindowDesc(&_osk_desc);
+ Window *w = new Window(&_osk_desc);
w->parent = parent;
assert(parent != NULL);