aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/generator/keiluv
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/generator/keiluv')
-rw-r--r--src/plugins/generator/keiluv/keiluvprojectwriter.cpp4
-rw-r--r--src/plugins/generator/keiluv/keiluvprojectwriter.h4
-rw-r--r--src/plugins/generator/keiluv/keiluvworkspacewriter.cpp4
-rw-r--r--src/plugins/generator/keiluv/keiluvworkspacewriter.h4
4 files changed, 8 insertions, 8 deletions
diff --git a/src/plugins/generator/keiluv/keiluvprojectwriter.cpp b/src/plugins/generator/keiluv/keiluvprojectwriter.cpp
index f2ae8befb..77616335c 100644
--- a/src/plugins/generator/keiluv/keiluvprojectwriter.cpp
+++ b/src/plugins/generator/keiluv/keiluvprojectwriter.cpp
@@ -37,7 +37,7 @@ KeiluvProjectWriter::KeiluvProjectWriter(std::ostream *device)
{
}
-void KeiluvProjectWriter::visitStart(const gen::xml::Project *project)
+void KeiluvProjectWriter::visitProjectStart(const gen::xml::Project *project)
{
Q_UNUSED(project)
writer()->writeStartElement(QStringLiteral("Project"));
@@ -49,7 +49,7 @@ void KeiluvProjectWriter::visitStart(const gen::xml::Project *project)
QStringLiteral("project_proj.xsd"));
}
-void KeiluvProjectWriter::visitEnd(const gen::xml::Project *project)
+void KeiluvProjectWriter::visitProjectEnd(const gen::xml::Project *project)
{
Q_UNUSED(project)
writer()->writeEndElement();
diff --git a/src/plugins/generator/keiluv/keiluvprojectwriter.h b/src/plugins/generator/keiluv/keiluvprojectwriter.h
index ad6fd1124..6f890c8e8 100644
--- a/src/plugins/generator/keiluv/keiluvprojectwriter.h
+++ b/src/plugins/generator/keiluv/keiluvprojectwriter.h
@@ -42,8 +42,8 @@ public:
explicit KeiluvProjectWriter(std::ostream *device);
private:
- void visitStart(const gen::xml::Project *project) final;
- void visitEnd(const gen::xml::Project *project) final;
+ void visitProjectStart(const gen::xml::Project *project) final;
+ void visitProjectEnd(const gen::xml::Project *project) final;
};
} // namespace qbs
diff --git a/src/plugins/generator/keiluv/keiluvworkspacewriter.cpp b/src/plugins/generator/keiluv/keiluvworkspacewriter.cpp
index 9070a2542..c886b0e6e 100644
--- a/src/plugins/generator/keiluv/keiluvworkspacewriter.cpp
+++ b/src/plugins/generator/keiluv/keiluvworkspacewriter.cpp
@@ -37,7 +37,7 @@ KeiluvWorkspaceWriter::KeiluvWorkspaceWriter(std::ostream *device)
{
}
-void KeiluvWorkspaceWriter::visitStart(const gen::xml::Workspace *workspace)
+void KeiluvWorkspaceWriter::visitWorkspaceStart(const gen::xml::Workspace *workspace)
{
Q_UNUSED(workspace)
writer()->writeStartElement(QStringLiteral("ProjectWorkspace"));
@@ -49,7 +49,7 @@ void KeiluvWorkspaceWriter::visitStart(const gen::xml::Workspace *workspace)
QStringLiteral("project_mpw.xsd"));
}
-void KeiluvWorkspaceWriter::visitEnd(const gen::xml::Workspace *workspace)
+void KeiluvWorkspaceWriter::visitWorkspaceEnd(const gen::xml::Workspace *workspace)
{
Q_UNUSED(workspace)
writer()->writeEndElement();
diff --git a/src/plugins/generator/keiluv/keiluvworkspacewriter.h b/src/plugins/generator/keiluv/keiluvworkspacewriter.h
index 56bcd1ebc..2419ad761 100644
--- a/src/plugins/generator/keiluv/keiluvworkspacewriter.h
+++ b/src/plugins/generator/keiluv/keiluvworkspacewriter.h
@@ -42,8 +42,8 @@ public:
explicit KeiluvWorkspaceWriter(std::ostream *device);
private:
- void visitStart(const gen::xml::Workspace *workspace) final;
- void visitEnd(const gen::xml::Workspace *workspace) final;
+ void visitWorkspaceStart(const gen::xml::Workspace *workspace) final;
+ void visitWorkspaceEnd(const gen::xml::Workspace *workspace) final;
};
} // namespace qbs