diff options
author | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-12-26 23:19:47 +0000 |
---|---|---|
committer | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-12-26 23:19:47 +0000 |
commit | dd31e6407bfc1349453920b36e83aa709dcaca27 (patch) | |
tree | a775c961f8f897565d4fae5ea7c690c4d5648a74 /mainwindow.cpp | |
parent | added structure for keyimportresult and emit keydbchanged in gpgcontext (diff) | |
download | gpg4usb-dd31e6407bfc1349453920b36e83aa709dcaca27.tar.gz gpg4usb-dd31e6407bfc1349453920b36e83aa709dcaca27.zip |
show importdetaildialog in all places
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@704 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to '')
-rw-r--r-- | mainwindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mainwindow.cpp b/mainwindow.cpp index 7dbfbc5..d8f78c4 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -632,7 +632,7 @@ void MainWindow::openHelp() { void MainWindow::startWizard() { - Wizard *wizard = new Wizard(mCtx,this); + Wizard *wizard = new Wizard(mCtx,keyMgmt,this); wizard->show(); wizard->setModal(true); } @@ -704,7 +704,7 @@ void MainWindow::importKeyFromEdit() return; } - mCtx->importKey(edit->curTextPage()->toPlainText().toAscii()); + keyMgmt->importKeys(edit->curTextPage()->toPlainText().toAscii()); } void MainWindow::openKeyManagement() |