From c4ad3750fbe7035d3720d6d0fb38fc81dbc5d1e4 Mon Sep 17 00:00:00 2001 From: nils Date: Wed, 5 May 2010 07:07:21 +0000 Subject: changed QList to QStringList and reverted gpg4usb.pro (no static building) and added spanish translation files git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@312 34ebc366-c3a9-4b3c-9f84-69acf7962910 --- context.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'context.cpp') diff --git a/context.cpp b/context.cpp index 9cf06a9..a737b11 100644 --- a/context.cpp +++ b/context.cpp @@ -125,7 +125,7 @@ void Context::generateKey(QString *params) /** Export Key to QByteArray * */ -bool Context::exportKeys(QList *uidList, QByteArray *outBuffer) +bool Context::exportKeys(QStringList *uidList, QByteArray *outBuffer) { size_t read_bytes; gpgme_data_t out = 0; @@ -218,7 +218,7 @@ GpgKeyList Context::listKeys() /** Delete keys */ -void Context::deleteKeys(QList *uidList) +void Context::deleteKeys(QStringList *uidList) { QString tmp; @@ -236,7 +236,7 @@ void Context::deleteKeys(QList *uidList) /** Encrypt inBuffer for reciepients-uids, write * result to outBuffer */ -bool Context::encrypt(QList *uidList, const QByteArray &inBuffer, QByteArray *outBuffer) +bool Context::encrypt(QStringList *uidList, const QByteArray &inBuffer, QByteArray *outBuffer) { gpgme_data_t in = 0, out = 0; -- cgit