summaryrefslogtreecommitdiffstats
path: root/certmanager/lib/kleo/hierarchicalkeylistjob.h
diff options
context:
space:
mode:
Diffstat (limited to 'certmanager/lib/kleo/hierarchicalkeylistjob.h')
-rw-r--r--certmanager/lib/kleo/hierarchicalkeylistjob.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/certmanager/lib/kleo/hierarchicalkeylistjob.h b/certmanager/lib/kleo/hierarchicalkeylistjob.h
index a91ff6dc..c4f7fe04 100644
--- a/certmanager/lib/kleo/hierarchicalkeylistjob.h
+++ b/certmanager/lib/kleo/hierarchicalkeylistjob.h
@@ -39,8 +39,8 @@
#include <gpgmepp/keylistresult.h>
-#include <qcstring.h>
-#include <qguardedptr.h>
+#include <tqcstring.h>
+#include <tqguardedptr.h>
#include <set>
@@ -63,10 +63,10 @@ namespace Kleo {
suitable slots and then start the keylisting with a call to
start(). This call might fail, in which case the
HierarchicalKeyListJob instance will have scheduled it's own
- destruction with a call to QObject::deleteLater().
+ destruction with a call to TQObject::deleteLater().
After result() is emitted, the HierarchicalKeyListJob will
- schedule its own destruction by calling QObject::deleteLater().
+ schedule its own destruction by calling TQObject::deleteLater().
*/
class KDE_EXPORT HierarchicalKeyListJob : public KeyListJob {
Q_OBJECT
@@ -84,9 +84,9 @@ namespace Kleo {
The \a secretOnly parameter is ignored by
HierarchicalKeyListJob and must be set to false.
*/
- GpgME::Error start( const QStringList & patterns, bool secretOnly=false );
+ GpgME::Error start( const TQStringList & patterns, bool secretOnly=false );
- GpgME::KeyListResult exec( const QStringList & patterns, bool secretOnly,
+ GpgME::KeyListResult exec( const TQStringList & patterns, bool secretOnly,
std::vector<GpgME::Key> & keys );
private slots:
@@ -104,11 +104,11 @@ namespace Kleo {
const bool mIncludeSigs;
const bool mValidating;
bool mTruncated;
- std::set<QString> mSentSet; // keys already sent (prevent duplicates even if the backend should return them)
- std::set<QString> mScheduledSet; // keys already scheduled (by starting a job for them)
- std::set<QString> mNextSet; // keys to schedule for the next iteraton
+ std::set<TQString> mSentSet; // keys already sent (prevent duplicates even if the backend should return them)
+ std::set<TQString> mScheduledSet; // keys already scheduled (by starting a job for them)
+ std::set<TQString> mNextSet; // keys to schedule for the next iteraton
GpgME::KeyListResult mIntermediateResult;
- QGuardedPtr<KeyListJob> mJob;
+ TQGuardedPtr<KeyListJob> mJob;
};
}