fixed compile error on gcc 2.9

This commit is contained in:
Dave White 2003-10-22 21:42:18 +00:00
parent eb7fcf3f92
commit 3daae56f1b

View file

@ -51,7 +51,7 @@ const std::string& textbox::text() const
void textbox::clear()
{
text_.clear();
text_ = "";
cursor_ = 0;
firstOnScreen_ = 0;
}