diff options
| author | Vincent Richard <[email protected]> | 2005-01-02 17:17:12 +0000 |
|---|---|---|
| committer | Vincent Richard <[email protected]> | 2005-01-02 17:17:12 +0000 |
| commit | af06b4a56d6505a196e07a72aaa6b4b700ad5aa1 (patch) | |
| tree | bb5c904096a5f9bffdf9526eac756420fe24f6f2 /src/messaging/url.cpp | |
| parent | Added unit tests for 'bodyPart'. (diff) | |
| download | vmime-af06b4a56d6505a196e07a72aaa6b4b700ad5aa1.tar.gz vmime-af06b4a56d6505a196e07a72aaa6b4b700ad5aa1.zip | |
Added 'utility::datetimeUtils' + fixed 'stringUtils' not in namespace 'utility'.
Diffstat (limited to 'src/messaging/url.cpp')
| -rw-r--r-- | src/messaging/url.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/messaging/url.cpp b/src/messaging/url.cpp index 9d6ba0dd..1c83a4d4 100644 --- a/src/messaging/url.cpp +++ b/src/messaging/url.cpp @@ -131,7 +131,7 @@ void url::parse(const string& str) if (protoEnd == string::npos) throw exceptions::malformed_url("No protocol separator"); const string proto = - stringUtils::toLower(string(str.begin(), str.begin() + protoEnd)); + utility::stringUtils::toLower(string(str.begin(), str.begin() + protoEnd)); // Username/password string::size_type slashPos = str.find('/', protoEnd + 3); @@ -190,7 +190,7 @@ void url::parse(const string& str) } // Path - string path = stringUtils::trim(string(str.begin() + slashPos, str.end())); + string path = utility::stringUtils::trim(string(str.begin() + slashPos, str.end())); if (path == "/") path.clear(); |
