aboutsummaryrefslogtreecommitdiffstats
path: root/src/text.cpp
diff options
context:
space:
mode:
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);