remove cursed this->m_

This commit is contained in:
altalk23 2022-12-31 18:20:43 +03:00
parent eb3b84113c
commit 07e64c4dc9
12 changed files with 123 additions and 123 deletions
loader/src/ui/nodes

View file

@ -689,12 +689,12 @@ CCScrollLayerExt* MDTextArea::getScrollLayer() const {
}
void MDTextArea::setString(char const* text) {
this->m_text = text;
m_text = text;
this->updateLabel();
}
char const* MDTextArea::getString() {
return this->m_text.c_str();
return m_text.c_str();
}
MDTextArea* MDTextArea::create(std::string const& str, CCSize const& size) {