summaryrefslogtreecommitdiff
path: root/editor/doc/doc_data.cpp
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2018-02-24 01:20:50 +0100
committerGitHub <noreply@github.com>2018-02-24 01:20:50 +0100
commited0d1a440474d862bca9d05645f46fda8d4c43b4 (patch)
tree34c7229b46c05fed059617d23432471fc1ca352d /editor/doc/doc_data.cpp
parent0712acec1c21b5683f4cfe292bb82f7d1d37cae0 (diff)
parent23ebae01dc7e3df9c842ca7d017f7b233837721d (diff)
Merge pull request #16957 from akien-mga/version-macros
Refactor version macros and fix related bugs
Diffstat (limited to 'editor/doc/doc_data.cpp')
-rw-r--r--editor/doc/doc_data.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/doc/doc_data.cpp b/editor/doc/doc_data.cpp
index 3a418e5f33..3434aa33f9 100644
--- a/editor/doc/doc_data.cpp
+++ b/editor/doc/doc_data.cpp
@@ -974,7 +974,7 @@ Error DocData::save_classes(const String &p_default_path, const Map<String, Stri
if (c.category == "")
category = "Core";
header += " category=\"" + category + "\"";
- header += String(" version=\"") + itos(VERSION_MAJOR) + "." + itos(VERSION_MINOR) + "-" + VERSION_STATUS + "\"";
+ header += String(" version=\"") + VERSION_NUMBER + "\"";
header += ">";
_write_string(f, 0, header);
_write_string(f, 1, "<brief_description>");