Index: Source/build/scripts/templates/MakeQualifiedNames.cpp.tmpl |
diff --git a/Source/build/scripts/templates/MakeQualifiedNames.cpp.tmpl b/Source/build/scripts/templates/MakeQualifiedNames.cpp.tmpl |
index 7f7557da8dcb56cfc145440870131b20ad466505..ace33f70e1f770c06e2a209416012ee73cebcf6f 100644 |
--- a/Source/build/scripts/templates/MakeQualifiedNames.cpp.tmpl |
+++ b/Source/build/scripts/templates/MakeQualifiedNames.cpp.tmpl |
@@ -64,15 +64,15 @@ void init() |
// Tags |
{% for tag in tags|sort %} |
- createQualifiedName((void*)&{{tag|symbol}}Tag, {{tag|symbol}}Impl, {{namespace_prefix}}NS); |
+ QualifiedName::createStatic((void*)&{{tag|symbol}}Tag, {{tag|symbol}}Impl, {{namespace_prefix}}NS); |
{% endfor %} |
// Attrs |
{% for attr in attrs|sort %} |
{% if use_namespace_for_attrs %} |
- createQualifiedName((void*)&{{attr|symbol}}Attr, {{attr|symbol}}Impl, {{namespace_prefix}}NS); |
+ QualifiedName::createStatic((void*)&{{attr|symbol}}Attr, {{attr|symbol}}Impl, {{namespace_prefix}}NS); |
{% else %} |
- createQualifiedName((void*)&{{attr|symbol}}Attr, {{attr|symbol}}Impl); |
+ QualifiedName::createStatic((void*)&{{attr|symbol}}Attr, {{attr|symbol}}Impl); |
{% endif %} |
{% endfor %} |
} |