summaryrefslogtreecommitdiffstats
path: root/certmanager/hierarchyanalyser.h
diff options
context:
space:
mode:
Diffstat (limited to 'certmanager/hierarchyanalyser.h')
-rw-r--r--certmanager/hierarchyanalyser.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/certmanager/hierarchyanalyser.h b/certmanager/hierarchyanalyser.h
index ccf07d4f..9521d84d 100644
--- a/certmanager/hierarchyanalyser.h
+++ b/certmanager/hierarchyanalyser.h
@@ -35,16 +35,16 @@
#include <gpgmepp/key.h>
-#include <qobject.h>
-#include <qcstring.h>
+#include <tqobject.h>
+#include <tqcstring.h>
#include <map>
#include <vector>
-class HierarchyAnalyser : public QObject {
+class HierarchyAnalyser : public TQObject {
Q_OBJECT
public:
- HierarchyAnalyser( QObject * parent=0, const char * name=0 );
+ HierarchyAnalyser( TQObject * parent=0, const char * name=0 );
~HierarchyAnalyser();
const std::vector<GpgME::Key> & rootItems() const {
@@ -59,7 +59,7 @@ public slots:
void slotNextKey( const GpgME::Key & key );
private:
- std::map< QCString, std::vector<GpgME::Key> > mSubjectsByIssuer;
+ std::map< TQCString, std::vector<GpgME::Key> > mSubjectsByIssuer;
};