1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Merge pull request #7959 from karroffel/powerstate-ptrcall-fix

really fixed PTRCALL now
This commit is contained in:
Rémi Verschelde
2017-03-05 16:29:19 +01:00
committed by GitHub
3 changed files with 2 additions and 6 deletions

View File

@@ -120,6 +120,7 @@ MAKE_PTRARG(PoolVector2Array);
MAKE_PTRARG(PoolVector3Array);
MAKE_PTRARG(PoolColorArray);
MAKE_PTRARG(Variant);
MAKE_PTRARG(PowerState);
//this is for Object

View File

@@ -2178,11 +2178,6 @@ Variant::operator IP_Address() const {
return IP_Address( operator String() );
}
Variant::operator PowerState() const
{
return (PowerState) operator int();
}
Variant::Variant(bool p_bool) {
type=BOOL;
@@ -2653,6 +2648,7 @@ Variant::Variant(const IP_Address& p_address) {
memnew_placement( _data._mem, String( p_address ) );
}
Variant::Variant(const Variant& p_variant) {
type=NIL;

View File

@@ -255,7 +255,6 @@ public:
operator Orientation() const;
operator IP_Address() const;
operator PowerState() const;
Variant(bool p_bool);