aboutsummaryrefslogtreecommitdiffstats
path: root/keymgmt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'keymgmt.cpp')
-rwxr-xr-xkeymgmt.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/keymgmt.cpp b/keymgmt.cpp
index 67e2c17..3db0866 100755
--- a/keymgmt.cpp
+++ b/keymgmt.cpp
@@ -122,7 +122,6 @@ void KeyMgmt::importKeyFromFile()
QByteArray inBuffer = file.readAll();
mCtx->importKey(inBuffer);
- mKeyList->refresh();
}
}
@@ -130,19 +129,16 @@ void KeyMgmt::importKeyFromClipboard()
{
QClipboard *cb = QApplication::clipboard();
mCtx->importKey(cb->text(QClipboard::Clipboard).toAscii());
- mKeyList->refresh();
}
void KeyMgmt::deleteSelectedKeys()
{
mCtx->deleteKeys(mKeyList->getSelected());
- mKeyList->refresh();
}
void KeyMgmt::deleteCheckedKeys()
{
mCtx->deleteKeys(mKeyList->getChecked());
- mKeyList->refresh();
}
void KeyMgmt::exportKeyToFile()