really fixed PTRCALL now
This commit is contained in:
parent
07df8a02e6
commit
1531f6fe01
3 changed files with 2 additions and 6 deletions
|
@ -120,6 +120,7 @@ MAKE_PTRARG(PoolVector2Array);
|
||||||
MAKE_PTRARG(PoolVector3Array);
|
MAKE_PTRARG(PoolVector3Array);
|
||||||
MAKE_PTRARG(PoolColorArray);
|
MAKE_PTRARG(PoolColorArray);
|
||||||
MAKE_PTRARG(Variant);
|
MAKE_PTRARG(Variant);
|
||||||
|
MAKE_PTRARG(PowerState);
|
||||||
|
|
||||||
|
|
||||||
//this is for Object
|
//this is for Object
|
||||||
|
|
|
@ -2178,11 +2178,6 @@ Variant::operator IP_Address() const {
|
||||||
return IP_Address( operator String() );
|
return IP_Address( operator String() );
|
||||||
}
|
}
|
||||||
|
|
||||||
Variant::operator PowerState() const
|
|
||||||
{
|
|
||||||
return (PowerState) operator int();
|
|
||||||
}
|
|
||||||
|
|
||||||
Variant::Variant(bool p_bool) {
|
Variant::Variant(bool p_bool) {
|
||||||
|
|
||||||
type=BOOL;
|
type=BOOL;
|
||||||
|
@ -2653,6 +2648,7 @@ Variant::Variant(const IP_Address& p_address) {
|
||||||
memnew_placement( _data._mem, String( p_address ) );
|
memnew_placement( _data._mem, String( p_address ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Variant::Variant(const Variant& p_variant) {
|
Variant::Variant(const Variant& p_variant) {
|
||||||
|
|
||||||
type=NIL;
|
type=NIL;
|
||||||
|
|
|
@ -255,7 +255,6 @@ public:
|
||||||
operator Orientation() const;
|
operator Orientation() const;
|
||||||
|
|
||||||
operator IP_Address() const;
|
operator IP_Address() const;
|
||||||
operator PowerState() const;
|
|
||||||
|
|
||||||
|
|
||||||
Variant(bool p_bool);
|
Variant(bool p_bool);
|
||||||
|
|
Loading…
Reference in a new issue