minor refactor + Block.uiLayout

This commit is contained in:
MihailRis
2024-02-16 22:51:47 +03:00
parent af7c828d73
commit 38f9805ca7
16 changed files with 48 additions and 38 deletions
+3 -3
View File
@@ -335,15 +335,15 @@ std::shared_ptr<UINode> TextBox::getAt(glm::vec2 pos, std::shared_ptr<UINode> se
return UINode::getAt(pos, self);
}
void TextBox::textSupplier(wstringsupplier supplier) {
void TextBox::setTextSupplier(wstringsupplier supplier) {
this->supplier = supplier;
}
void TextBox::textConsumer(wstringconsumer consumer) {
void TextBox::setTextConsumer(wstringconsumer consumer) {
this->consumer = consumer;
}
void TextBox::textValidator(wstringchecker validator) {
void TextBox::setTextValidator(wstringchecker validator) {
this->validator = validator;
}