diff options
Diffstat (limited to 'akonadi2_cli/module.cpp')
-rw-r--r-- | akonadi2_cli/module.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/akonadi2_cli/module.cpp b/akonadi2_cli/module.cpp index 125caaa..5fd68b4 100644 --- a/akonadi2_cli/module.cpp +++ b/akonadi2_cli/module.cpp | |||
@@ -157,4 +157,9 @@ Module::SyntaxList Module::nearestSyntax(const QStringList &words, const QString | |||
157 | return matches; | 157 | return matches; |
158 | } | 158 | } |
159 | 159 | ||
160 | QStringList Module::tokenize(const QString &text) | ||
161 | { | ||
162 | //TODO: properly tokenize (e.g. "foo bar" should not become ['"foo', 'bar"'] | ||
163 | return text.split(" "); | ||
164 | } | ||
160 | 165 | ||