diff options
author | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2010-07-29 12:33:40 +0000 |
---|---|---|
committer | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2010-07-29 12:33:40 +0000 |
commit | 4b9ae942606322ad49bd97922737400fff5ea142 (patch) | |
tree | 9d7745ccccaee5827d9d2aee2abde3b1502314ae /attachments.cpp | |
parent | added warning, if file exists in file encryption (diff) | |
download | gpg4usb-4b9ae942606322ad49bd97922737400fff5ea142.tar.gz gpg4usb-4b9ae942606322ad49bd97922737400fff5ea142.zip |
decode quoted printable
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@363 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'attachments.cpp')
-rw-r--r-- | attachments.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/attachments.cpp b/attachments.cpp index 3debb91..5c08bf1 100644 --- a/attachments.cpp +++ b/attachments.cpp @@ -88,7 +88,7 @@ void Attachments::saveFile() // only singe-selection possible now: TODO: foreach MimePart mp = table->getMimePart(indexes.at(0).row()); - QString filename = mp.getParam("Content-Type", "name"); + QString filename = mp.header.getParam("Content-Type", "name"); // TODO: find out why filename is quoted filename.chop(1); filename.remove(0, 1); |