doc: Sync classref with current source

This commit is contained in:
Rémi Verschelde
2019-04-19 11:21:09 +02:00
parent 6af69f851a
commit 268b520703
8 changed files with 148 additions and 6 deletions

View File

@ -982,8 +982,7 @@ Error DocData::save_classes(const String &p_default_path, const Map<String, Stri
FileAccessRef f = FileAccess::open(save_file, FileAccess::WRITE, &err);
if (err) {
ERR_EXPLAIN("Can't write doc file: " + save_file);
ERR_FAIL_V(err);
ERR_CONTINUE(err);
}
_write_string(f, 0, "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>");