Core: Change _Marshall class inherit from Reference to Object
This commit is contained in:
parent
9e4d11d10d
commit
9e8e5ebdc7
|
@ -581,9 +581,9 @@ private:
|
|||
bool _list_skip_hidden;
|
||||
};
|
||||
|
||||
class _Marshalls : public Reference {
|
||||
class _Marshalls : public Object {
|
||||
|
||||
GDCLASS(_Marshalls, Reference);
|
||||
GDCLASS(_Marshalls, Object);
|
||||
|
||||
static _Marshalls *singleton;
|
||||
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
The [JavaScript] singleton.
|
||||
[b]Note:[/b] Only implemented on HTML5.
|
||||
</member>
|
||||
<member name="Marshalls" type="Reference" setter="" getter="">
|
||||
<member name="Marshalls" type="Marshalls" setter="" getter="">
|
||||
The [Marshalls] singleton.
|
||||
</member>
|
||||
<member name="Navigation2DServer" type="Navigation2DServer" setter="" getter="">
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<class name="Marshalls" inherits="Reference" version="4.0">
|
||||
<class name="Marshalls" inherits="Object" version="4.0">
|
||||
<brief_description>
|
||||
Data transformation (marshalling) and encoding helpers.
|
||||
</brief_description>
|
||||
|
|
Loading…
Reference in New Issue