diff options
| author | Rémi Verschelde | 2016-05-12 08:41:43 +0200 |
|---|---|---|
| committer | Rémi Verschelde | 2016-05-12 08:41:43 +0200 |
| commit | 22d1385caf40badde869fb114b01f6f50ab608ab (patch) | |
| tree | 7d50cb78a98da7a6f2ebe14098fdb80b486652f6 /core/io/config_file.cpp | |
| parent | 2fbf4f563bd5b5b159c35ce93db8963089f46d9d (diff) | |
| download | godot-22d1385caf40badde869fb114b01f6f50ab608ab.tar.gz godot-22d1385caf40badde869fb114b01f6f50ab608ab.tar.zst godot-22d1385caf40badde869fb114b01f6f50ab608ab.zip | |
classref: Directory and ConfigFile
Diffstat (limited to 'core/io/config_file.cpp')
| -rw-r--r-- | core/io/config_file.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/io/config_file.cpp b/core/io/config_file.cpp index fd20ec940..e0dc7ef9f 100644 --- a/core/io/config_file.cpp +++ b/core/io/config_file.cpp @@ -207,7 +207,7 @@ Error ConfigFile::load(const String& p_path) { void ConfigFile::_bind_methods(){ ObjectTypeDB::bind_method(_MD("set_value","section","key","value"),&ConfigFile::set_value); - ObjectTypeDB::bind_method(_MD("get_value","section","key","default"),&ConfigFile::get_value,DEFVAL(Variant())); + ObjectTypeDB::bind_method(_MD("get_value:Variant","section","key","default"),&ConfigFile::get_value,DEFVAL(Variant())); ObjectTypeDB::bind_method(_MD("has_section","section"),&ConfigFile::has_section); ObjectTypeDB::bind_method(_MD("has_section_key","section","key"),&ConfigFile::has_section_key); |
