summaryrefslogtreecommitdiff
path: root/src/signs_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/signs_gui.cpp
parent5a7fcf9aa3ce17e9f8602a682171b30cc8b1a786 (diff)
downloadopenttd-51cda2252ceb088d75f25074f1e83e8eec5f18b6.tar.xz
(svn r13004) -Codechange: replace AllocateWindow and AllocateWindowDesc with a Window constructor.
Diffstat (limited to 'src/signs_gui.cpp')
-rw-r--r--src/signs_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/signs_gui.cpp b/src/signs_gui.cpp
index 2f1da2419..328f02ad2 100644
--- a/src/signs_gui.cpp
+++ b/src/signs_gui.cpp
@@ -301,7 +301,7 @@ void ShowRenameSignWindow(const Sign *si)
DeleteWindowById(WC_QUERY_STRING, 0);
DeleteWindowById(WC_SAVELOAD, 0);
- Window *w = AllocateWindowDesc(&_query_sign_edit_desc);
+ Window *w = new Window(&_query_sign_edit_desc);
WP(w, editsign_d).caption = STR_280B_EDIT_SIGN_TEXT;
WP(w, editsign_d).afilter = CS_ALPHANUMERAL;