summaryrefslogtreecommitdiff
path: root/core/callable.h
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2020-02-21 14:53:24 +0100
committerGitHub <noreply@github.com>2020-02-21 14:53:24 +0100
commit0447d6fc8edfd636fa6c859d32e76ec8a760f42e (patch)
treed441d6bd2190b79607b953542edd1295e61ee078 /core/callable.h
parent7ac0973e9abb308b91597dd8881aeed62682733c (diff)
parent04bb6a708a5b68ed199e5caa92d16a50992caf52 (diff)
Merge pull request #36393 from reduz/callable-method-pointer
New callable_mp macro, for signals to call method pointers directly.
Diffstat (limited to 'core/callable.h')
-rw-r--r--core/callable.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/core/callable.h b/core/callable.h
index 8ea5377ce8..cecf2264a3 100644
--- a/core/callable.h
+++ b/core/callable.h
@@ -39,10 +39,9 @@ class Object;
class Variant;
class CallableCustom;
-// This is an abstraction of things that can be called
-// it is used for signals and other cases where effient
-// calling of functions is required.
-// It is designed for the standard case (object and method)
+// This is an abstraction of things that can be called.
+// It is used for signals and other cases where efficient calling of functions
+// is required. It is designed for the standard case (object and method)
// but can be optimized or customized.
class Callable {