diff options
author | Juan Linietsky <reduzio@gmail.com> | 2014-10-26 11:50:48 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2014-10-26 11:50:48 -0300 |
commit | 4e31faab4a4d1a7d0d8786a07ee1210fd89c4245 (patch) | |
tree | 97f2ed84b6df5c58f58909c68c6d4c35f172e559 /core/object.cpp | |
parent | b38118c5cb363c9aa07fa90bf246eee8edeff203 (diff) | |
parent | 6532aa627cd6a4b1f590dcf1d91c03a3860ce889 (diff) |
Merge pull request #824 from Gerold31/fix-more-bindings
this is great,thanks! will fix the typos here
Diffstat (limited to 'core/object.cpp')
-rw-r--r-- | core/object.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/object.cpp b/core/object.cpp index b011d1ad3d..42d570042f 100644 --- a/core/object.cpp +++ b/core/object.cpp @@ -1489,7 +1489,7 @@ void Object::_bind_methods() { ObjectTypeDB::bind_method(_MD("set_block_signals","enable"),&Object::set_block_signals); ObjectTypeDB::bind_method(_MD("is_blocking_signals"),&Object::is_blocking_signals); ObjectTypeDB::bind_method(_MD("set_message_translation","enable"),&Object::set_message_translation); - ObjectTypeDB::bind_method(_MD("can_translate_messages"),&Object::set_message_translation); + ObjectTypeDB::bind_method(_MD("can_translate_messages"),&Object::can_translate_messages); ObjectTypeDB::bind_method(_MD("property_list_changed_notify"),&Object::property_list_changed_notify); ObjectTypeDB::bind_method(_MD("XL_MESSAGE","message"),&Object::XL_MESSAGE); |