aboutsummaryrefslogtreecommitdiffstats
path: root/fileencryptiondialog.cpp
diff options
context:
space:
mode:
authornils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910>2010-01-12 10:18:47 +0000
committernils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910>2010-01-12 10:18:47 +0000
commitc6da678ef3613d67be24c21bbf5bbbb43c4e4512 (patch)
tree0e6b446e4fe637b5ee728425ff6399e7b6e1e263 /fileencryptiondialog.cpp
parenthalfway fix utf8-encoding (quoted printable still doesn't show correct), add ... (diff)
downloadgpg4usb-c6da678ef3613d67be24c21bbf5bbbb43c4e4512.tar.gz
gpg4usb-c6da678ef3613d67be24c21bbf5bbbb43c4e4512.zip
added Fabian's bugfix for file encryption
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@237 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to '')
-rwxr-xr-xfileencryptiondialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/fileencryptiondialog.cpp b/fileencryptiondialog.cpp
index 2951947..2dbd816 100755
--- a/fileencryptiondialog.cpp
+++ b/fileencryptiondialog.cpp
@@ -159,7 +159,7 @@ void FileEncryptionDialog::executeAction()
}
QFile outfile(outputFileEdit->text());
- if (!outfile.open(QFile::WriteOnly | QFile::Text)) {
+ if (!outfile.open(QFile::WriteOnly)) {
QMessageBox::warning(this, tr("File"),
tr("Cannot write file %1:\n%2.")
.arg(outputFileEdit->text())