From 1226366351300139f2d8b7c10fee29d744591426 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Wed, 22 Oct 2008 20:56:56 +0200 Subject: Alte Split-Funktion durch neuen Tokenizer ersetzt --- src/Client/CommandParser.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/Client/CommandParser.cpp') diff --git a/src/Client/CommandParser.cpp b/src/Client/CommandParser.cpp index ab3dd50..d75eb0a 100644 --- a/src/Client/CommandParser.cpp +++ b/src/Client/CommandParser.cpp @@ -28,6 +28,7 @@ #include #include #include +#include #include #include @@ -316,7 +317,7 @@ bool CommandParser::split(const std::string &str, std::vector &ret) bool CommandParser::parse(const std::string &cmd) { std::vector splitCmd; - split(cmd, splitCmd); + Common::Tokenizer::tokenize(cmd, splitCmd); if(splitCmd.empty()) return true; -- cgit v1.2.3