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/text.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/text.cpp')
-rw-r--r-- | src/text.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/text.cpp b/src/text.cpp index fd210bab..d1cc8364 100644 --- a/src/text.cpp +++ b/src/text.cpp @@ -336,7 +336,7 @@ void text::encodeAndFold(utility::outputStream& os, const string::size_type maxL // Calculate the number of ASCII chars to check whether encoding is needed // and _which_ encoding to use. const string::size_type asciiCount = - stringUtils::countASCIIchars(buffer.begin(), buffer.end()); + utility::stringUtils::countASCIIchars(buffer.begin(), buffer.end()); bool noEncoding = (flags & FORCE_NO_ENCODING) || (!(flags & FORCE_ENCODING) && asciiCount == buffer.length()); |