diff options
author | Vincent Richard <[email protected]> | 2006-10-20 17:48:10 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2006-10-20 17:48:10 +0000 |
commit | c2ec474b037843b5ff5eddfb18ff816c9861331b (patch) | |
tree | 30a2d5ae06bfbe8581dbac382f209ed9c499899a | |
parent | Updated example and doc with some code showing how to read embedded object da... (diff) | |
download | vmime-c2ec474b037843b5ff5eddfb18ff816c9861331b.tar.gz vmime-c2ec474b037843b5ff5eddfb18ff816c9861331b.zip |
Fixed compilation problem with GCC 3.3.
-rw-r--r-- | src/wordEncoder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wordEncoder.cpp b/src/wordEncoder.cpp index e854eac6..e5da3c78 100644 --- a/src/wordEncoder.cpp +++ b/src/wordEncoder.cpp @@ -182,7 +182,7 @@ const string wordEncoder::getNextChunk(const string::size_type maxLength) // Fully RFC-compliant encoding else { - charsetConverter conv(vmime::charset(charsets::UTF_8), m_charset); + charsetConverter conv(charsets::UTF_8, m_charset); string::size_type inputCount = 0; string::size_type outputCount = 0; |