diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-02-21 14:53:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-21 14:53:24 +0100 |
commit | 0447d6fc8edfd636fa6c859d32e76ec8a760f42e (patch) | |
tree | d441d6bd2190b79607b953542edd1295e61ee078 /core/callable.h | |
parent | 7ac0973e9abb308b91597dd8881aeed62682733c (diff) | |
parent | 04bb6a708a5b68ed199e5caa92d16a50992caf52 (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.h | 7 |
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 { |