diff options
author | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-01-17 21:39:54 +0000 |
---|---|---|
committer | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-01-17 21:39:54 +0000 |
commit | 7206143f863fa03a578efe7ecb95d1cfa4752824 (patch) | |
tree | 3d8a8a269e036c5132f97d7ed6207ccd960f298f /fileencryptiondialog.cpp | |
parent | set focus to textedit on start (diff) | |
download | gpg4usb-7206143f863fa03a578efe7ecb95d1cfa4752824.tar.gz gpg4usb-7206143f863fa03a578efe7ecb95d1cfa4752824.zip |
added quitdialog with checklist for documents to save, but there has to be some handling for the saving
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@439 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'fileencryptiondialog.cpp')
-rwxr-xr-x | fileencryptiondialog.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/fileencryptiondialog.cpp b/fileencryptiondialog.cpp index 931aaa3..41c2639 100755 --- a/fileencryptiondialog.cpp +++ b/fileencryptiondialog.cpp @@ -21,16 +21,13 @@ #include <QWidget> #include <QDialogButtonBox> -#include <QGroupBox> -#include <QLineEdit> #include <QLabel> #include <QPushButton> -#include <QGridLayout> -#include <QRadioButton> #include <QHBoxLayout> #include <QVBoxLayout> -#include <QFileDialog> #include <QDebug> +#include <QFileDialog> +#include <QRadioButton> #include "fileencryptiondialog.h" @@ -76,7 +73,8 @@ FileEncryptionDialog::FileEncryptionDialog(GpgME::Context *ctx, QString iconPath mKeyList->hide(); mKeyList->setColumnWidth(2, 150); mKeyList->setColumnWidth(3, 150); - mKeyList->setChecked(&keyList); + mKeyList->setChecked(&keyList); + /* Setup Action */ radioEnc = new QRadioButton(tr("&Encrypt")); connect(radioEnc, SIGNAL(clicked()), this, SLOT(showKeyList())); |