aboutsummaryrefslogtreecommitdiffstats
path: root/mainwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'mainwindow.cpp')
-rw-r--r--mainwindow.cpp4
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()