summaryrefslogtreecommitdiff
path: root/noncore
authoralwin <alwin>2004-10-17 12:24:39 (UTC)
committer alwin <alwin>2004-10-17 12:24:39 (UTC)
commit03f04b51c84b15f5b6e82a7b427adeef56c16e90 (patch) (side-by-side diff)
treea5677873f4f21c774488a84b1789e640b2fd2846 /noncore
parent29719c2132c20eb92ba3e9b4e33eccfc0f89c8b4 (diff)
downloadopie-03f04b51c84b15f5b6e82a7b427adeef56c16e90.zip
opie-03f04b51c84b15f5b6e82a7b427adeef56c16e90.tar.gz
opie-03f04b51c84b15f5b6e82a7b427adeef56c16e90.tar.bz2
the bug in libetpan seems to be fixed so we can reuse string encoding again
Diffstat (limited to 'noncore') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/mail/libmailwrapper/abstractmail.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/noncore/net/mail/libmailwrapper/abstractmail.cpp b/noncore/net/mail/libmailwrapper/abstractmail.cpp
index 7c1c0e4..f40aac8 100644
--- a/noncore/net/mail/libmailwrapper/abstractmail.cpp
+++ b/noncore/net/mail/libmailwrapper/abstractmail.cpp
@@ -84,18 +84,17 @@ encodedString* AbstractMail::decode_String(const encodedString*text,const QStrin
QString AbstractMail::convert_String(const char*text)
{
- //size_t index = 0;
+ size_t index = 0;
char*res = 0;
int err = MAILIMF_NO_ERROR;
QString result(text);
- /* due a bug in libetpan it isn't usable this moment */
-/* int err = mailmime_encoded_phrase_parse("iso-8859-1",
- text, strlen(text),&index, "iso-8859-1",&res);*/
+ err = mailmime_encoded_phrase_parse("iso-8859-1",
+ text, strlen(text),&index, "iso-8859-1",&res);
//odebug << "Input: " << text << "" << oendl;
if (err == MAILIMF_NO_ERROR && res && strlen(res)) {
-// result = QString(res);
+ result = QString(res);
// odebug << "Res: " << res << ", length: " << strlen(res) << "" << oendl;
}
if (res) free(res);