summaryrefslogtreecommitdiffstats
path: root/tools/qscxmlc
diff options
context:
space:
mode:
authorErik Verbruggen <erik.verbruggen@theqtcompany.com>2015-09-17 13:55:04 +0200
committerErik Verbruggen <erik.verbruggen@theqtcompany.com>2015-09-17 16:21:17 +0300
commit435bc0550cc9e873bb44b13f6d19fe341ed14324 (patch)
treefe86a378c6ffa8eb409780bc68ed61dc3a932217 /tools/qscxmlc
parent7b6ff93736bad6ddf69734bb115e2ec550bf43fe (diff)
Renamed StateMachine to QScxmlStateMachine.
Change-Id: I73c6ff52478383c3c3870e0a889194444c956a4b Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
Diffstat (limited to 'tools/qscxmlc')
-rw-r--r--tools/qscxmlc/scxmlcppdumper.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/qscxmlc/scxmlcppdumper.cpp b/tools/qscxmlc/scxmlcppdumper.cpp
index 3e485ca..2132441 100644
--- a/tools/qscxmlc/scxmlcppdumper.cpp
+++ b/tools/qscxmlc/scxmlcppdumper.cpp
@@ -233,7 +233,7 @@ protected:
default:
Q_UNREACHABLE();
}
- clazz.init.impl << QStringLiteral("stateMachine.setDataBinding(Scxml::StateMachine::%1Binding);").arg(binding);
+ clazz.init.impl << QStringLiteral("stateMachine.setDataBinding(Scxml::QScxmlStateMachine::%1Binding);").arg(binding);
clazz.implIncludes << QStringLiteral("QtScxml/executablecontent.h");
clazz.init.impl << QStringLiteral("stateMachine.setTableData(this);");
@@ -634,7 +634,7 @@ private:
if (!m_signals.isEmpty()) {
clazz.init.impl << QStringLiteral("stateMachine.setScxmlEventFilter(this);");
auto &dm = clazz.dataMethods;
- dm << QStringLiteral("bool handle(QScxmlEvent *event, Scxml::StateMachine *stateMachine) Q_DECL_OVERRIDE {")
+ dm << QStringLiteral("bool handle(QScxmlEvent *event, Scxml::QScxmlStateMachine *stateMachine) Q_DECL_OVERRIDE {")
<< QStringLiteral(" if (event->originType() != QStringLiteral(\"qt:signal\")) { return true; }")
<< QStringLiteral(" %1 *m = qobject_cast<%1 *>(stateMachine);").arg(clazz.className);
foreach (const QString &s, m_signals) {
@@ -1100,7 +1100,7 @@ void CppDumper::writeHeaderStart(const QString &headerGuard)
void CppDumper::writeClass(const ClassDump &clazz)
{
- h << l("class ") << clazz.className << QStringLiteral(": public Scxml::StateMachine\n{") << endl;
+ h << l("class ") << clazz.className << QStringLiteral(": public Scxml::QScxmlStateMachine\n{") << endl;
h << QLatin1String(" Q_OBJECT\n");
clazz.properties.write(h, QStringLiteral(" "), QStringLiteral("\n"));
h << QLatin1String("\npublic:\n");
@@ -1190,7 +1190,7 @@ void CppDumper::writeImplBody(const ClassDump &clazz)
cpp << l("};") << endl
<< endl;
cpp << clazz.className << l("::") << clazz.className << l("(QObject *parent)") << endl
- << l(" : Scxml::StateMachine(parent)") << endl
+ << l(" : Scxml::QScxmlStateMachine(parent)") << endl
<< l(" , data(new Data(*this))") << endl
<< l("{ qRegisterMetaType<QAbstractState *>(); }") << endl
<< endl;