diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2019-06-01 17:18:13 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2019-06-01 17:18:13 +0900 |
commit | 6d2f3127be206390c4c576fc174ad6edeb020dfe (patch) | |
tree | ca430a49349b46c7e556a2c6cb140730a3b00b46 /certmanager/lib/kleo | |
parent | 2852e8272a186108d3c8b2bc133e67fd8624e99c (diff) | |
download | tdepim-6d2f3127be206390c4c576fc174ad6edeb020dfe.tar.gz tdepim-6d2f3127be206390c4c576fc174ad6edeb020dfe.zip |
Adjusted to use new TQStringVariantMap type.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'certmanager/lib/kleo')
-rw-r--r-- | certmanager/lib/kleo/cryptobackend.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/certmanager/lib/kleo/cryptobackend.h b/certmanager/lib/kleo/cryptobackend.h index 6cb690d04..215c4e3c6 100644 --- a/certmanager/lib/kleo/cryptobackend.h +++ b/certmanager/lib/kleo/cryptobackend.h @@ -2,7 +2,7 @@ kleo/cryptobackend.h This file is part of libkleopatra, the KDE keymanagement library - Copyright (c) 2004,2005 Klarälvdalens Datakonsult AB + Copyright (c) 2004,2005 Klar�lvdalens Datakonsult AB Libkleopatra is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -34,6 +34,7 @@ #define __KLEO_CRYPTOBACKEND_H__ #include <tqstring.h> +#include <tqvariant.h> namespace Kleo { class CryptoConfig; @@ -54,10 +55,6 @@ namespace Kleo { class SpecialJob; } -class TQString; -class TQVariant; -template <typename T_Key, typename T_Value> class TQMap; - namespace Kleo { class CryptoBackend { @@ -114,7 +111,7 @@ namespace Kleo { virtual DecryptVerifyJob * decryptVerifyJob( bool textmode=false ) const = 0; virtual RefreshKeysJob * refreshKeysJob() const = 0; - virtual SpecialJob * specialJob( const char * type, const TQMap<TQString,TQVariant> & args ) const = 0; + virtual SpecialJob * specialJob( const char * type, const TQStringVariantMap & args ) const = 0; }; } |