(svn r21406) -Codechange: rename some textbuf related names to make them a bit more descriptive

This commit is contained in:
rubidium
2010-12-05 22:21:37 +00:00
parent 95934b9f49
commit 28da832781
6 changed files with 68 additions and 65 deletions

View File

@@ -60,8 +60,8 @@ public:
};
struct QueryStringBaseWindow : public Window, public QueryString {
char *edit_str_buf;
const uint16 edit_str_size; ///< maximum length of string (in bytes), including terminating '\0'
char *edit_str_buf; ///< Buffer for string.
const uint16 edit_str_size; ///< Maximum length of string (in bytes), including terminating '\0'.
QueryStringBaseWindow(uint16 size) : Window(), edit_str_size(size)
{