fix(datatypes): signal type descriptor error
This commit is contained in:
parent
f9fc8c8cae
commit
bb67a246e2
1 changed files with 4 additions and 0 deletions
|
@ -227,6 +227,8 @@ SignalRef::~SignalRef() = default;
|
|||
|
||||
const TypeInfo SignalRef::TYPE = {
|
||||
.name = "Signal",
|
||||
.toString = toVariantFunction(&SignalRef::ToString),
|
||||
.pushLuaValue = toVariantFunction(&SignalRef::PushLuaValue),
|
||||
.fromLuaValue = &SignalRef::FromLuaValue,
|
||||
};
|
||||
|
||||
|
@ -346,6 +348,8 @@ SignalConnectionRef::~SignalConnectionRef() = default;
|
|||
|
||||
const TypeInfo SignalConnectionRef::TYPE = {
|
||||
.name = "Signal",
|
||||
.toString = toVariantFunction(&SignalConnectionRef::ToString),
|
||||
.pushLuaValue = toVariantFunction(&SignalConnectionRef::PushLuaValue),
|
||||
.fromLuaValue = &SignalConnectionRef::FromLuaValue,
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue