Commit c8a799d6 by Rémi Verschelde

Fix MethodInfo for EditorInspectorPlugin.can_handle

parent fac01205
......@@ -40,7 +40,7 @@
</description>
</method>
<method name="can_handle" qualifiers="virtual">
<return type="void">
<return type="bool">
</return>
<argument index="0" name="object" type="Object">
</argument>
......
......@@ -842,9 +842,11 @@ void EditorInspectorPlugin::_bind_methods() {
MethodInfo vm;
vm.name = "can_handle";
vm.return_val.type = Variant::BOOL;
vm.arguments.push_back(PropertyInfo(Variant::OBJECT, "object"));
BIND_VMETHOD(vm);
vm.name = "parse_begin";
vm.return_val.type = Variant::NIL;
BIND_VMETHOD(vm);
vm.name = "parse_category";
vm.arguments.push_back(PropertyInfo(Variant::STRING, "category"));
......@@ -859,8 +861,8 @@ void EditorInspectorPlugin::_bind_methods() {
vm.arguments.push_back(PropertyInfo(Variant::INT, "usage"));
BIND_VMETHOD(vm);
vm.arguments.clear();
vm.return_val.type = Variant::NIL;
vm.name = "parse_end";
vm.return_val.type = Variant::NIL;
BIND_VMETHOD(vm);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment