fix UINode function typedefs naming

This commit is contained in:
MihailRis
2025-11-14 12:35:27 +03:00
parent 7abe552e3c
commit f9bab5a5cf
7 changed files with 16 additions and 16 deletions
+4 -4
View File
@@ -64,22 +64,22 @@ UINode* UINode::getParent() const {
return parent;
}
UINode* UINode::listenAction(const onaction& action) {
UINode* UINode::listenAction(const OnAction& action) {
actions.listen(action);
return this;
}
UINode* UINode::listenDoubleClick(const onaction& action) {
UINode* UINode::listenDoubleClick(const OnAction& action) {
doubleClickCallbacks.listen(action);
return this;
}
UINode* UINode::listenFocus(const onaction& action) {
UINode* UINode::listenFocus(const OnAction& action) {
focusCallbacks.listen(action);
return this;
}
UINode* UINode::listenDefocus(const onaction& action) {
UINode* UINode::listenDefocus(const OnAction& action) {
defocusCallbacks.listen(action);
return this;
}