diff options
author | Vincent Richard <[email protected]> | 2011-06-26 12:47:25 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2011-06-26 12:47:25 +0000 |
commit | 92b4dc86485b91e9c20b2d0b3b6a7f19c6c56bf0 (patch) | |
tree | d90b6c547fb570081ae5c807975c9b4863e553c5 /src/text.cpp | |
parent | Use gnutls_priority_set_direct() instead of GNUTLS deprecated functions. (diff) | |
download | vmime-92b4dc86485b91e9c20b2d0b3b6a7f19c6c56bf0.tar.gz vmime-92b4dc86485b91e9c20b2d0b3b6a7f19c6c56bf0.zip |
Fixed encoding of whitespace. Fixed old test case.
Diffstat (limited to 'src/text.cpp')
-rw-r--r-- | src/text.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/text.cpp b/src/text.cpp index 24544567..66c3b353 100644 --- a/src/text.cpp +++ b/src/text.cpp @@ -320,12 +320,6 @@ void text::createFromString(const string& in, const charset& ch) } else { - if (count) - { - ref <word> w = getWordAt(getWordCount() - 1); - w->getBuffer() += ' '; - } - appendWord(vmime::create <word> (chunk, charset(charsets::US_ASCII))); |