mirror of
https://github.com/geode-sdk/geode.git
synced 2025-06-27 14:40:22 -04:00
remove cursed this->m_
This commit is contained in:
parent
eb3b84113c
commit
07e64c4dc9
12 changed files with 123 additions and 123 deletions
loader/src/ui/nodes
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue