diff options
author | smatz <smatz@openttd.org> | 2008-09-15 16:29:40 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2008-09-15 16:29:40 +0000 |
commit | ffa39caf3dd099f8fa69d9c25ff24885fd4ce44a (patch) | |
tree | 460dfbcf75a0eba53ff1d436c6670f771aeeb3fd /src/industry_gui.cpp | |
parent | aa2c3bdd6f8cbde0a72195688c9d9b5026cea65d (diff) | |
download | openttd-ffa39caf3dd099f8fa69d9c25ff24885fd4ce44a.tar.xz |
(svn r14331) -Codechange: use an enum as additional parameter for ShowQueryString()
Diffstat (limited to 'src/industry_gui.cpp')
-rw-r--r-- | src/industry_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/industry_gui.cpp b/src/industry_gui.cpp index 0692ee187..b3420e3ea 100644 --- a/src/industry_gui.cpp +++ b/src/industry_gui.cpp @@ -605,7 +605,7 @@ public: /* clicked the text */ this->editbox_line = line; SetDParam(0, i->production_rate[line] * 8); - ShowQueryString(STR_CONFIG_PATCHES_INT32, STR_CONFIG_GAME_PRODUCTION, 10, 100, this, CS_ALPHANUMERAL); + ShowQueryString(STR_CONFIG_PATCHES_INT32, STR_CONFIG_GAME_PRODUCTION, 10, 100, this, CS_ALPHANUMERAL, QSF_NONE); } } } break; |