diff options
author | rubidium <rubidium@openttd.org> | 2008-05-10 08:58:52 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-05-10 08:58:52 +0000 |
commit | 2c96ce4506163ad1528db6a4340964af99fc1de2 (patch) | |
tree | 746df1921c03a63762ea8a5c0a05a16d672c34fe /src/industry_gui.cpp | |
parent | 8ebfbc2bd3c8a74693057ac4c38844d1f50e3995 (diff) | |
download | openttd-2c96ce4506163ad1528db6a4340964af99fc1de2.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/industry_gui.cpp')
-rw-r--r-- | src/industry_gui.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/industry_gui.cpp b/src/industry_gui.cpp index 5e2c7f652..996210bb9 100644 --- a/src/industry_gui.cpp +++ b/src/industry_gui.cpp @@ -25,6 +25,7 @@ #include "player_func.h" #include "settings_type.h" #include "tilehighlight_func.h" +#include "string_func.h" #include "table/strings.h" #include "table/sprites.h" @@ -592,7 +593,7 @@ static void IndustryViewWndProc(Window *w, WindowEvent *e) break; case WE_ON_EDIT_TEXT: - if (e->we.edittext.str[0] != '\0') { + if (!StrEmpty(e->we.edittext.str)) { Industry* i = GetIndustry(w->window_number); int line = WP(w, indview_d).editbox_line; |