aboutsummaryrefslogtreecommitdiffstats
path: root/src/text.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2010-02-03 10:45:17 +0000
committerVincent Richard <[email protected]>2010-02-03 10:45:17 +0000
commit1b19b400225ddf11847eea1c2cc3c0045e2138a6 (patch)
tree512f329234b55fed3a38150a9327c80beaab99b4 /src/text.cpp
parentFixed memory leak. (diff)
downloadvmime-1b19b400225ddf11847eea1c2cc3c0045e2138a6.tar.gz
vmime-1b19b400225ddf11847eea1c2cc3c0045e2138a6.zip
Removed wide-char support.
Diffstat (limited to 'src/text.cpp')
-rw-r--r--src/text.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/text.cpp b/src/text.cpp
index f9ded7ca..89a541a0 100644
--- a/src/text.cpp
+++ b/src/text.cpp
@@ -91,21 +91,6 @@ void text::generate(utility::outputStream& os, const string::size_type maxLineLe
}
-#if VMIME_WIDE_CHAR_SUPPORT
-
-const wstring text::getDecodedText() const
-{
- wstring out;
-
- for (std::vector <ref <word> >::const_iterator i = m_words.begin() ; i != m_words.end() ; ++i)
- out += (*i)->getDecodedText();
-
- return (out);
-}
-
-#endif
-
-
void text::copyFrom(const component& other)
{
const text& t = dynamic_cast <const text&>(other);