summaryrefslogtreecommitdiffstats
path: root/certmanager/hierarchyanalyser.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
commit7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch)
tree8474f9b444b2756228600050f07a7ff25de532b2 /certmanager/hierarchyanalyser.h
parentf587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff)
downloadtdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz
tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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 ccf07d4f3..9521d84d6 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;
};