summaryrefslogtreecommitdiffstats
path: root/akonadi2_cli/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'akonadi2_cli/main.cpp')
-rw-r--r--akonadi2_cli/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/akonadi2_cli/main.cpp b/akonadi2_cli/main.cpp
index d23e070..f7b7b9f 100644
--- a/akonadi2_cli/main.cpp
+++ b/akonadi2_cli/main.cpp
@@ -22,7 +22,7 @@
22#include <QCoreApplication> 22#include <QCoreApplication>
23#include <QDebug> 23#include <QDebug>
24 24
25#include "module.h" 25#include "syntaxtree.h"
26// #include "jsonlistener.h" 26// #include "jsonlistener.h"
27#include "repl/repl.h" 27#include "repl/repl.h"
28 28
@@ -64,5 +64,5 @@ int main(int argc, char *argv[])
64 64
65 QStringList commands = app.arguments(); 65 QStringList commands = app.arguments();
66 commands.removeFirst(); 66 commands.removeFirst();
67 return Module::self()->run(commands); 67 return SyntaxTree::self()->run(commands);
68} 68}