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/ai/ai_gui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/ai') diff --git a/src/ai/ai_gui.cpp b/src/ai/ai_gui.cpp index 245057ae8..96b5fdfe8 100644 --- a/src/ai/ai_gui.cpp +++ b/src/ai/ai_gui.cpp @@ -1009,11 +1009,11 @@ struct AIDebugWindow : public QueryStringBaseWindow { this->last_vscroll_pos = 0; this->autoscroll = true; this->highlight_row = -1; - InitializeTextBuffer(&this->text, this->edit_str_buf, this->edit_str_size, MAX_BREAK_STR_STRING_LENGTH); + this->text.Initialize(this->edit_str_buf, this->edit_str_size, MAX_BREAK_STR_STRING_LENGTH); /* Restore the break string value from static variable */ strecpy(this->edit_str_buf, this->break_string, this->edit_str_buf + MAX_BREAK_STR_STRING_LENGTH); - UpdateTextBufferSize(&this->text); + this->text.UpdateSize(); /* Restore button state from static class variables */ if (ai_debug_company == OWNER_DEITY) { -- cgit v1.2.3-54-g00ecf