diff options
author | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2010-01-12 10:18:47 +0000 |
---|---|---|
committer | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2010-01-12 10:18:47 +0000 |
commit | c6da678ef3613d67be24c21bbf5bbbb43c4e4512 (patch) | |
tree | 0e6b446e4fe637b5ee728425ff6399e7b6e1e263 /fileencryptiondialog.cpp | |
parent | halfway fix utf8-encoding (quoted printable still doesn't show correct), add ... (diff) | |
download | gpg4usb-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-x | fileencryptiondialog.cpp | 2 |
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()) |