summaryrefslogtreecommitdiffstats
path: root/tests/hawd/module.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/hawd/module.h')
-rw-r--r--tests/hawd/module.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hawd/module.h b/tests/hawd/module.h
index 8f94707..856c09c 100644
--- a/tests/hawd/module.h
+++ b/tests/hawd/module.h
@@ -36,7 +36,7 @@ public:
36 Syntax(const QString &keyword, std::function<bool(const QStringList &, State &)> lambda = std::function<bool(const QStringList &, State &)>(), bool eventDriven = false); 36 Syntax(const QString &keyword, std::function<bool(const QStringList &, State &)> lambda = std::function<bool(const QStringList &, State &)>(), bool eventDriven = false);
37 QString keyword; 37 QString keyword;
38 std::function<bool(const QStringList &, State &)> lambda; 38 std::function<bool(const QStringList &, State &)> lambda;
39 QList<Syntax> children; 39 QVector<Syntax> children;
40 bool eventDriven; 40 bool eventDriven;
41 }; 41 };
42 42