diff options
author | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2012-09-29 14:37:38 +0000 |
---|---|---|
committer | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2012-09-29 14:37:38 +0000 |
commit | 4616cb5a2bd91236595e98d5f8e16b2fa9cd84a7 (patch) | |
tree | a95076bcd9b0bddfa85daed38faa5512397b6e15 /mainwindow.cpp | |
parent | textedit is editable after hitting escape after having no found match in find... (diff) | |
download | gpg4usb-4616cb5a2bd91236595e98d5f8e16b2fa9cd84a7.tar.gz gpg4usb-4616cb5a2bd91236595e98d5f8e16b2fa9cd84a7.zip |
remove gpgme dependencies, cleanup
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@969 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'mainwindow.cpp')
-rw-r--r-- | mainwindow.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mainwindow.cpp b/mainwindow.cpp index b556dda..2f5722e 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -1083,9 +1083,11 @@ void MainWindow::refreshKeysFromKeyserver() void MainWindow::uploadKeyToServer() { QByteArray *keyArray = new QByteArray(); - mCtx->exportKeys(mKeyList->getSelected(), keyArray); - mKeyList->uploadKeyToServer(keyArray); + // TODO: + //mCtx->exportKeys(mKeyList->getSelected(), keyArray); + + //mKeyList->uploadKeyToServer(keyArray); } void MainWindow::fileEncrypt() |