aboutsummaryrefslogtreecommitdiffstats
path: root/gpgwin.cpp
diff options
context:
space:
mode:
authornils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910>2008-10-08 16:28:50 +0000
committernils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910>2008-10-08 16:28:50 +0000
commit25cb5069ed99678693e87da30ee8b36a8eb575b6 (patch)
treee1a0cacb1135a23172adbc717c2d419e026399c8 /gpgwin.cpp
parentrenamed m_ctx to mCtx in context.* (diff)
downloadgpg4usb-25cb5069ed99678693e87da30ee8b36a8eb575b6.tar.gz
gpg4usb-25cb5069ed99678693e87da30ee8b36a8eb575b6.zip
deleted unnecessary mkeylist->refresh statements
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@188 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'gpgwin.cpp')
-rw-r--r--gpgwin.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/gpgwin.cpp b/gpgwin.cpp
index 0327c8a..03e9dcb 100644
--- a/gpgwin.cpp
+++ b/gpgwin.cpp
@@ -421,14 +421,12 @@ void GpgWin::preventNoDataErr(QByteArray *in)
void GpgWin::importKeyFromEdit()
{
mCtx->importKey(edit->toPlainText().toAscii());
- mKeyList->refresh();
}
void GpgWin::importKeyFromClipboard()
{
QClipboard *cb = QApplication::clipboard();
mCtx->importKey(cb->text(QClipboard::Clipboard).toAscii());
- mKeyList->refresh();
}
void GpgWin::importKeyFromFile()
@@ -444,7 +442,6 @@ void GpgWin::importKeyFromFile()
}
QByteArray inBuffer = file.readAll();
mCtx->importKey(inBuffer);
- mKeyList->refresh();
}
}
@@ -499,7 +496,6 @@ void GpgWin::importKeyDialog() {
void GpgWin::deleteSelectedKeys()
{
mCtx->deleteKeys(mKeyList->getSelected());
- mKeyList->refresh();
}
/**