summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2016-07-30 21:52:18 +0200
committerGitHub <noreply@github.com>2016-07-30 21:52:18 +0200
commit2b5198b23dde370563719f57d158f4f342263be2 (patch)
tree44955cc366e2dc327481f4a62fdcb4429a2f4250 /core
parent73f83fadc82a9fa0fd4a70dec4ecd9d4a8dde6a9 (diff)
parentb80c42ef4e99ee155a98c7a2f17201280612257f (diff)
Merge pull request #5978 from eska014/class-doc
Document FuncRef, GDFunctionState, InstancePlaceholder, RID and World2D
Diffstat (limited to 'core')
-rw-r--r--core/func_ref.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/func_ref.cpp b/core/func_ref.cpp
index 29b06ae9a0..644d8b5b63 100644
--- a/core/func_ref.cpp
+++ b/core/func_ref.cpp
@@ -65,7 +65,7 @@ void FuncRef::_bind_methods() {
mi.arguments.push_back( PropertyInfo( Variant::NIL, "arg"+itos(i)));
defargs.push_back(Variant());
}
- ObjectTypeDB::bind_native_method(METHOD_FLAGS_DEFAULT,"call_func",&FuncRef::call_func,mi,defargs);
+ ObjectTypeDB::bind_native_method(METHOD_FLAGS_DEFAULT,"call_func:Variant",&FuncRef::call_func,mi,defargs);
}