diff options
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/xml/XmlOutput.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/xml/XmlOutput.cpp b/src/plugins/xml/XmlOutput.cpp index 516fc22..5713f29 100644 --- a/src/plugins/xml/XmlOutput.cpp +++ b/src/plugins/xml/XmlOutput.cpp @@ -656,7 +656,7 @@ void transformChildren(DocumentEntity *parentEntity, Handle<Element> parent, TransformParams &P) { - NodeVector<FieldDescriptor> fieldDescs = + ManagedVector<FieldDescriptor> fieldDescs = parentEntity->getDescriptor()->getFieldDescriptors(); for (size_t f = 0; f < fieldDescs.size(); f++) { @@ -787,4 +787,4 @@ Rooted<Text> transformPrimitive(Handle<Element> parent, Handle<Type> type, return text; } } -}
\ No newline at end of file +} |