diff options
author | Vincent Richard <[email protected]> | 2010-02-03 10:45:17 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2010-02-03 10:45:17 +0000 |
commit | 1b19b400225ddf11847eea1c2cc3c0045e2138a6 (patch) | |
tree | 512f329234b55fed3a38150a9327c80beaab99b4 /src/word.cpp | |
parent | Fixed memory leak. (diff) | |
download | vmime-1b19b400225ddf11847eea1c2cc3c0045e2138a6.tar.gz vmime-1b19b400225ddf11847eea1c2cc3c0045e2138a6.zip |
Removed wide-char support.
Diffstat (limited to 'src/word.cpp')
-rw-r--r-- | src/word.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/word.cpp b/src/word.cpp index ea8244a5..4f911089 100644 --- a/src/word.cpp +++ b/src/word.cpp @@ -621,20 +621,6 @@ void word::generate(utility::outputStream& os, const string::size_type maxLineLe } -#if VMIME_WIDE_CHAR_SUPPORT - -const wstring word::getDecodedText() const -{ - wstring out; - - charset::decode(m_buffer, out, m_charset); - - return (out); -} - -#endif - - word& word::operator=(const word& w) { m_buffer = w.m_buffer; |