summaryrefslogtreecommitdiff
path: root/src/network/network_chat_gui.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-07-20 11:21:57 +0000
committerrubidium <rubidium@openttd.org>2009-07-20 11:21:57 +0000
commite3053660c673b0a81691175995ee68d00fac869c (patch)
tree2bce56e94620079087ae16f12c62217d4945e596 /src/network/network_chat_gui.cpp
parentdc943b35e092f80bb5e3b972b4d5ed73bbccb546 (diff)
downloadopenttd-e3053660c673b0a81691175995ee68d00fac869c.tar.xz
(svn r16886) -Codechange: unify naming of some string IDs related to string codes and group them logically
Diffstat (limited to 'src/network/network_chat_gui.cpp')
-rw-r--r--src/network/network_chat_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/network_chat_gui.cpp b/src/network/network_chat_gui.cpp
index 52138f2f6..8c288bcf5 100644
--- a/src/network/network_chat_gui.cpp
+++ b/src/network/network_chat_gui.cpp
@@ -319,7 +319,7 @@ struct NetworkChatWindow : public QueryStringBaseWindow {
FOR_ALL_TOWNS_FROM(t, *item - MAX_CLIENT_SLOTS) {
/* Get the town-name via the string-system */
SetDParam(0, t->index);
- GetString(chat_tab_temp_buffer, STR_TOWN, lastof(chat_tab_temp_buffer));
+ GetString(chat_tab_temp_buffer, STR_TOWN_NAME, lastof(chat_tab_temp_buffer));
return &chat_tab_temp_buffer[0];
}
}