diff options
Diffstat (limited to 'src/relay.cpp')
-rw-r--r-- | src/relay.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/relay.cpp b/src/relay.cpp index 14521b38..43da65b2 100644 --- a/src/relay.cpp +++ b/src/relay.cpp @@ -115,32 +115,32 @@ void relay::parse(const string& buffer, const string::size_type position, if (!inComment) { - if (stringUtils::isStringEqualNoCase(word, "from", 4)) + if (utility::stringUtils::isStringEqualNoCase(word, "from", 4)) { newPart = Part_From; keyword = true; } - else if (stringUtils::isStringEqualNoCase(word, "by", 2)) + else if (utility::stringUtils::isStringEqualNoCase(word, "by", 2)) { newPart = Part_By; keyword = true; } - else if (stringUtils::isStringEqualNoCase(word, "via", 2)) + else if (utility::stringUtils::isStringEqualNoCase(word, "via", 2)) { newPart = Part_Via; keyword = true; } - else if (stringUtils::isStringEqualNoCase(word, "with", 2)) + else if (utility::stringUtils::isStringEqualNoCase(word, "with", 2)) { newPart = Part_With; keyword = true; } - else if (stringUtils::isStringEqualNoCase(word, "id", 2)) + else if (utility::stringUtils::isStringEqualNoCase(word, "id", 2)) { newPart = Part_Id; keyword = true; } - else if (stringUtils::isStringEqualNoCase(word, "for", 2)) + else if (utility::stringUtils::isStringEqualNoCase(word, "for", 2)) { newPart = Part_For; keyword = true; |