From d58eee1e7945098f32e2d4419506ce1a81f3e4d6 Mon Sep 17 00:00:00 2001 From: frosch Date: Mon, 4 Jun 2012 15:30:29 +0000 Subject: (svn r24324) -Codechange: Turn functions dealing with Textbufs into member functions. --- src/fios_gui.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/fios_gui.cpp') diff --git a/src/fios_gui.cpp b/src/fios_gui.cpp index 5ae42897f..5266d6fc3 100644 --- a/src/fios_gui.cpp +++ b/src/fios_gui.cpp @@ -263,7 +263,7 @@ public: } 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->CreateNestedTree(desc, true); if (mode == SLD_LOAD_GAME) this->GetWidget(WID_SL_CONTENT_DOWNLOAD_SEL)->SetDisplayedPlane(SZSP_HORIZONTAL); @@ -571,7 +571,7 @@ public: if (_saveload_mode == SLD_SAVE_GAME || _saveload_mode == SLD_SAVE_SCENARIO || _saveload_mode == SLD_SAVE_HEIGHTMAP) { /* Copy clicked name to editbox */ ttd_strlcpy(this->text.buf, file->title, this->text.max_bytes); - UpdateTextBufferSize(&this->text); + this->text.UpdateSize(); this->SetWidgetDirty(WID_SL_SAVE_OSK_TITLE); } } else if (!_load_check_data.HasErrors()) { @@ -651,7 +651,7 @@ public: if (_saveload_mode == SLD_SAVE_GAME) GenerateFileName(); } - UpdateTextBufferSize(&this->text); + this->text.UpdateSize(); } else if (this->IsWidgetLowered(WID_SL_SAVE_GAME)) { // Save button clicked if (_saveload_mode == SLD_SAVE_GAME || _saveload_mode == SLD_SAVE_SCENARIO) { _switch_mode = SM_SAVE_GAME; -- cgit v1.2.3-54-g00ecf