diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2016-12-01 06:34:05 +0100 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2016-12-09 18:24:59 +0100 |
commit | c18c5013f837ea7d4de2f022d36f84e0abce6439 (patch) | |
tree | f21627a04256241523f6ca10d848cf89fd5fd12b /core/io/tcp_server.cpp | |
parent | 4d90a4fcd5fcdca42df47062f94a1fa4e5635a94 (diff) | |
download | redot-engine-c18c5013f837ea7d4de2f022d36f84e0abce6439.tar.gz |
Migrate int.IP_TYPE_ constants to IP.TYPE_
Diffstat (limited to 'core/io/tcp_server.cpp')
-rw-r--r-- | core/io/tcp_server.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/core/io/tcp_server.cpp b/core/io/tcp_server.cpp index 29e8bd0c02..0dcec8001e 100644 --- a/core/io/tcp_server.cpp +++ b/core/io/tcp_server.cpp @@ -30,8 +30,6 @@ TCP_Server* (*TCP_Server::_create)()=NULL; -VARIANT_ENUM_CAST(IP_Address::AddrType); - Ref<TCP_Server> TCP_Server::create_ref() { if (!_create) @@ -68,5 +66,5 @@ void TCP_Server::_bind_methods() { TCP_Server::TCP_Server() { - ip_type = IP_Address::TYPE_ANY; + ip_type = IP::TYPE_ANY; } |