diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-07-11 16:44:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-11 16:44:21 +0200 |
commit | b708546f50f82672caf79fcf5561b21801a5f103 (patch) | |
tree | 649829c8b72e629b5914afc01faf4cae835411c5 /core | |
parent | 9f0a65b804da903b0c7ebdaffd80dee01acbdc28 (diff) | |
parent | 074801e7a9078c45e281787bc6e856747a957b23 (diff) |
Merge pull request #9602 from ducdetronquito/master
[#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); } |