diff options
| author | Rémi Verschelde | 2017-07-19 10:00:20 +0200 |
|---|---|---|
| committer | GitHub | 2017-07-19 10:00:20 +0200 |
| commit | c5ba9d9b7c6d7d2c08d01b13af87748af4dee8a2 (patch) | |
| tree | 540f8232f44a6fdc0646a6f3410fb644922d5cab /core/io/ip.cpp | |
| parent | 1f91c2908e7c551c20dc00d88212e0aaad44f4cf (diff) | |
| parent | 49c7620326a557bc809340dd1090b46120e43eac (diff) | |
| download | godot-c5ba9d9b7c6d7d2c08d01b13af87748af4dee8a2.tar.gz godot-c5ba9d9b7c6d7d2c08d01b13af87748af4dee8a2.tar.zst godot-c5ba9d9b7c6d7d2c08d01b13af87748af4dee8a2.zip | |
Merge pull request #9703 from Noshyaar/docs
Add object type hint for docs
Diffstat (limited to 'core/io/ip.cpp')
| -rw-r--r-- | core/io/ip.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/io/ip.cpp b/core/io/ip.cpp index 6c463b983..c869bdad9 100644 --- a/core/io/ip.cpp +++ b/core/io/ip.cpp @@ -240,7 +240,7 @@ void IP::_bind_methods() { ClassDB::bind_method(D_METHOD("get_resolve_item_address", "id"), &IP::get_resolve_item_address); ClassDB::bind_method(D_METHOD("erase_resolve_item", "id"), &IP::erase_resolve_item); ClassDB::bind_method(D_METHOD("get_local_addresses"), &IP::_get_local_addresses); - ClassDB::bind_method(D_METHOD("clear_cache"), &IP::clear_cache, DEFVAL("")); + ClassDB::bind_method(D_METHOD("clear_cache", "hostname"), &IP::clear_cache, DEFVAL("")); BIND_CONSTANT(RESOLVER_STATUS_NONE); BIND_CONSTANT(RESOLVER_STATUS_WAITING); |
