summaryrefslogtreecommitdiff
path: root/src/misc_gui.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-05-10 08:58:52 +0000
committerrubidium <rubidium@openttd.org>2008-05-10 08:58:52 +0000
commitf23026cce8fa49974e3dd06e00dd073cb45f906b (patch)
tree746df1921c03a63762ea8a5c0a05a16d672c34fe /src/misc_gui.cpp
parente099831210a55f71f7def91d2ee9fb6c3058a1eb (diff)
downloadopenttd-f23026cce8fa49974e3dd06e00dd073cb45f906b.tar.xz
(svn r13027) -Codechange: use StrEmpty instead of arr[0] == '\0' and remove the need for WE_ON_EDIT_TEXT_CANCEL.
Diffstat (limited to 'src/misc_gui.cpp')
-rw-r--r--src/misc_gui.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/misc_gui.cpp b/src/misc_gui.cpp
index 06af009d8..dc224d3f4 100644
--- a/src/misc_gui.cpp
+++ b/src/misc_gui.cpp
@@ -1040,7 +1040,8 @@ static void QueryStringWndProc(Window *w, WindowEvent *e)
Window *parent = w->parent;
qs->handled = true;
- e.event = WE_ON_EDIT_TEXT_CANCEL;
+ e.event = WE_ON_EDIT_TEXT;
+ e.we.edittext.str = NULL;
parent->HandleWindowEvent(&e);
}
ClrBit(_no_scroll, SCROLL_EDIT);