summaryrefslogtreecommitdiff
path: root/noncore/net/mail/libmailwrapper/abstractmail.cpp
authoralwin <alwin>2003-12-18 14:23:15 (UTC)
committer alwin <alwin>2003-12-18 14:23:15 (UTC)
commit5cb08b0c69ffc7216405b552e17ff0541578bda0 (patch) (side-by-side diff)
tree37ea5ec8747f82a90c068422fbb99662789380ec /noncore/net/mail/libmailwrapper/abstractmail.cpp
parent51e56afac97c5254abfe76b65fd697a3e75e4bdd (diff)
downloadopie-5cb08b0c69ffc7216405b552e17ff0541578bda0.zip
opie-5cb08b0c69ffc7216405b552e17ff0541578bda0.tar.gz
opie-5cb08b0c69ffc7216405b552e17ff0541578bda0.tar.bz2
ok. char-translation enabled again.
make sure to have the decode patch applied to libetpan!!!!
Diffstat (limited to 'noncore/net/mail/libmailwrapper/abstractmail.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/mail/libmailwrapper/abstractmail.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/noncore/net/mail/libmailwrapper/abstractmail.cpp b/noncore/net/mail/libmailwrapper/abstractmail.cpp
index b7e5eaa..3d76c96 100644
--- a/noncore/net/mail/libmailwrapper/abstractmail.cpp
+++ b/noncore/net/mail/libmailwrapper/abstractmail.cpp
@@ -51,3 +51,2 @@ QString AbstractMail::convert_String(const char*text)
{
-#if 0
size_t index = 0;
@@ -55,3 +54,2 @@ QString AbstractMail::convert_String(const char*text)
- qDebug("encode start %s",text);
/* attention - doesn't work with arm systems! */
@@ -59,3 +57,2 @@ QString AbstractMail::convert_String(const char*text)
text, strlen(text),&index, "iso-8859-1",&res);
- qDebug("encode end");
if (err != MAILIMF_NO_ERROR) {
@@ -64,2 +61,3 @@ QString AbstractMail::convert_String(const char*text)
}
+ if (res) {
QString result(res);
@@ -67,5 +65,4 @@ QString AbstractMail::convert_String(const char*text)
return result;
-#else
+ }
return QString(text);
-#endif
}