aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/generators/xmlworkspacewriter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/corelib/generators/xmlworkspacewriter.cpp')
-rw-r--r--src/lib/corelib/generators/xmlworkspacewriter.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/corelib/generators/xmlworkspacewriter.cpp b/src/lib/corelib/generators/xmlworkspacewriter.cpp
index 2358d4047..c88cb06d0 100644
--- a/src/lib/corelib/generators/xmlworkspacewriter.cpp
+++ b/src/lib/corelib/generators/xmlworkspacewriter.cpp
@@ -58,25 +58,25 @@ bool WorkspaceWriter::write(const Workspace *workspace)
return m_device->good();
}
-void WorkspaceWriter::visitStart(const Property *property)
+void WorkspaceWriter::visitPropertyStart(const Property *property)
{
const auto value = property->value().toString();
const auto name = QString::fromUtf8(property->name());
m_writer->writeTextElement(name, value);
}
-void WorkspaceWriter::visitEnd(const Property *property)
+void WorkspaceWriter::visitPropertyEnd(const Property *property)
{
Q_UNUSED(property)
}
-void WorkspaceWriter::visitStart(const PropertyGroup *propertyGroup)
+void WorkspaceWriter::visitPropertyGroupStart(const PropertyGroup *propertyGroup)
{
const auto name = QString::fromUtf8(propertyGroup->name());
m_writer->writeStartElement(name);
}
-void WorkspaceWriter::visitEnd(const PropertyGroup *propertyGroup)
+void WorkspaceWriter::visitPropertyGroupEnd(const PropertyGroup *propertyGroup)
{
Q_UNUSED(propertyGroup)
m_writer->writeEndElement();