diff options
author | frosch <frosch@openttd.org> | 2012-06-04 15:30:29 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2012-06-04 15:30:29 +0000 |
commit | d58eee1e7945098f32e2d4419506ce1a81f3e4d6 (patch) | |
tree | d5b61295290e921e8dff31d1bd73d149c84c113a /src/network | |
parent | 31eb896143ca5a38c0dc7355921393f357c5a383 (diff) | |
download | openttd-d58eee1e7945098f32e2d4419506ce1a81f3e4d6.tar.xz |
(svn r24324) -Codechange: Turn functions dealing with Textbufs into member functions.
Diffstat (limited to 'src/network')
-rw-r--r-- | src/network/network_chat_gui.cpp | 6 | ||||
-rw-r--r-- | src/network/network_content_gui.cpp | 2 | ||||
-rw-r--r-- | src/network/network_gui.cpp | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/src/network/network_chat_gui.cpp b/src/network/network_chat_gui.cpp index 5709386e3..9709bf263 100644 --- a/src/network/network_chat_gui.cpp +++ b/src/network/network_chat_gui.cpp @@ -300,7 +300,7 @@ struct NetworkChatWindow : public QueryStringBaseWindow { this->dtype = type; this->dest = dest; this->afilter = CS_ALPHANUMERAL; - InitializeTextBuffer(&this->text, this->edit_str_buf, this->edit_str_size); + this->text.Initialize(this->edit_str_buf, this->edit_str_size); static const StringID chat_captions[] = { STR_NETWORK_CHAT_ALL_CAPTION, @@ -442,7 +442,7 @@ struct NetworkChatWindow : public QueryStringBaseWindow { } /* Update the textbuffer */ - UpdateTextBufferSize(&this->text); + this->text.UpdateSize(); this->SetDirty(); free(pre_buf); @@ -456,7 +456,7 @@ struct NetworkChatWindow : public QueryStringBaseWindow { _chat_tab_completion_active = false; /* Update the textbuffer */ - UpdateTextBufferSize(&this->text); + this->text.UpdateSize(); this->SetDirty(); } diff --git a/src/network/network_content_gui.cpp b/src/network/network_content_gui.cpp index 5b1d97329..f3ebfc4f4 100644 --- a/src/network/network_content_gui.cpp +++ b/src/network/network_content_gui.cpp @@ -371,7 +371,7 @@ public: this->GetWidget<NWidgetStacked>(WID_NCL_SEL_ALL_UPDATE)->SetDisplayedPlane(select_all); this->afilter = CS_ALPHANUMERAL; - InitializeTextBuffer(&this->text, this->edit_str_buf, this->edit_str_size, EDITBOX_MAX_LENGTH); + this->text.Initialize(this->edit_str_buf, this->edit_str_size, EDITBOX_MAX_LENGTH); this->SetFocusedWidget(WID_NCL_FILTER); _network_content_client.AddCallback(this); diff --git a/src/network/network_gui.cpp b/src/network/network_gui.cpp index 151776d74..b5e04d828 100644 --- a/src/network/network_gui.cpp +++ b/src/network/network_gui.cpp @@ -447,7 +447,7 @@ public: ttd_strlcpy(this->edit_str_buf, _settings_client.network.client_name, this->edit_str_size); this->afilter = CS_ALPHANUMERAL; - InitializeTextBuffer(&this->text, this->edit_str_buf, this->edit_str_size, 120); + this->text.Initialize(this->edit_str_buf, this->edit_str_size, 120); this->SetFocusedWidget(WID_NG_CLIENT); this->field = WID_NG_CLIENT; @@ -1019,7 +1019,7 @@ struct NetworkStartServerWindow : public QueryStringBaseWindow { ttd_strlcpy(this->edit_str_buf, _settings_client.network.server_name, this->edit_str_size); this->afilter = CS_ALPHANUMERAL; - InitializeTextBuffer(&this->text, this->edit_str_buf, this->edit_str_size, 160); + this->text.Initialize(this->edit_str_buf, this->edit_str_size, 160); this->SetFocusedWidget(WID_NSS_GAMENAME); this->field = WID_NSS_GAMENAME; @@ -2142,7 +2142,7 @@ struct NetworkCompanyPasswordWindow : public QueryStringBaseWindow { this->parent = parent; this->afilter = CS_ALPHANUMERAL; - InitializeTextBuffer(&this->text, this->edit_str_buf, this->edit_str_size); + this->text.Initialize(this->edit_str_buf, this->edit_str_size); this->SetFocusedWidget(WID_NCP_PASSWORD); } |