diff options
author | Nils Achtergarde <[email protected]> | 2017-12-31 01:45:19 +0000 |
---|---|---|
committer | Nils Achtergarde <[email protected]> | 2017-12-31 01:45:19 +0000 |
commit | 7e68ad595c77a3c02cf542c47a9a14ea7ec904d4 (patch) | |
tree | d607483b876d052b4190bdcaa8b1e0ece188e0e9 | |
parent | recommit 15a3e48b8e55c2d02d26c64d89bba1940981b9c3 (added possibility to add k... (diff) | |
parent | Merge branch 'master' of https://github.com/gpg4usb/gpg4usb (diff) | |
download | gpg4usb-7e68ad595c77a3c02cf542c47a9a14ea7ec904d4.tar.gz gpg4usb-7e68ad595c77a3c02cf542c47a9a14ea7ec904d4.zip |
Merge branch 'master' of github.com:gpg4usb/gpg4usb
-rwxr-xr-x | fileencryptiondialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fileencryptiondialog.cpp b/fileencryptiondialog.cpp index d81d3fd..38b7de5 100755 --- a/fileencryptiondialog.cpp +++ b/fileencryptiondialog.cpp @@ -66,13 +66,13 @@ FileEncryptionDialog::FileEncryptionDialog(GpgME::GpgContext *ctx, QStringList k gLayout->addWidget(fl1, 0, 0); gLayout->addWidget(inputFileEdit, 0, 1); gLayout->addWidget(fb1, 0, 2); + signFileEdit = new QLineEdit(); // verify does not need outfile, but signature file if(mAction != Verify) { gLayout->addWidget(fl2, 1, 0); gLayout->addWidget(outputFileEdit, 1, 1); gLayout->addWidget(fb2, 1, 2); } else { - signFileEdit = new QLineEdit(); QPushButton *sfb1 = new QPushButton("..."); connect(sfb1, SIGNAL(clicked()), this, SLOT(slotSelectSignFile())); QLabel *sfl1 = new QLabel(tr("Signature")); |