diff options
author | ducdetronquito <guillaume.paulet@giome.fr> | 2017-07-11 13:09:24 +0200 |
---|---|---|
committer | ducdetronquito <guillaume.paulet@giome.fr> | 2017-07-11 13:25:51 +0200 |
commit | 074801e7a9078c45e281787bc6e856747a957b23 (patch) | |
tree | 48ac6acf2dd9f22ff59cea5ea94a99fd5c26e4c8 /core | |
parent | a5d500f0233913fe7622434225c5dc73ebaccd1e (diff) |
[#7212] Fixed missing 'Variant' return values in documentation.
Diffstat (limited to 'core')
-rw-r--r-- | core/global_config.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/global_config.cpp b/core/global_config.cpp index ba0a7f3e31..caae73ee2e 100644 --- a/core/global_config.cpp +++ b/core/global_config.cpp @@ -835,7 +835,7 @@ void GlobalConfig::_bind_methods() { ClassDB::bind_method(D_METHOD("get_singleton", "name"), &GlobalConfig::get_singleton_object); ClassDB::bind_method(D_METHOD("load_resource_pack", "pack"), &GlobalConfig::_load_resource_pack); ClassDB::bind_method(D_METHOD("property_can_revert", "name"), &GlobalConfig::property_can_revert); - ClassDB::bind_method(D_METHOD("property_get_revert", "name"), &GlobalConfig::property_get_revert); + ClassDB::bind_method(D_METHOD("property_get_revert:Variant", "name"), &GlobalConfig::property_get_revert); ClassDB::bind_method(D_METHOD("save_custom", "file"), &GlobalConfig::_save_custom_bnd); } |