diff options
Diffstat (limited to 'kmail/kmgroupware.cpp')
-rw-r--r-- | kmail/kmgroupware.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kmail/kmgroupware.cpp b/kmail/kmgroupware.cpp index ecc960eef..08afc3316 100644 --- a/kmail/kmgroupware.cpp +++ b/kmail/kmgroupware.cpp @@ -43,7 +43,7 @@ #include <assert.h> -bool vPartFoundAndDecoded( KMMessage* msg, QString& s ) +bool vPartFoundAndDecoded( KMMessage* msg, TQString& s ) { assert( msg ); @@ -52,7 +52,7 @@ bool vPartFoundAndDecoded( KMMessage* msg, QString& s ) ( DwMime::kTypeApplication == msg->type() && DwMime::kSubtypeOctetStream == msg->subtype() ) ) { - s = QString::fromUtf8( msg->bodyDecoded() ); + s = TQString::fromUtf8( msg->bodyDecoded() ); return true; } else if( DwMime::kTypeMultipart == msg->type() && (DwMime::kSubtypeMixed == msg->subtype() ) || |