From af06b4a56d6505a196e07a72aaa6b4b700ad5aa1 Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Sun, 2 Jan 2005 17:17:12 +0000 Subject: Added 'utility::datetimeUtils' + fixed 'stringUtils' not in namespace 'utility'. --- src/relay.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/relay.cpp') 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; -- cgit v1.2.3