summaryrefslogtreecommitdiffstats
path: root/kio/kssl/ksslx509map.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
commitffe8a83e053396df448e9413828527613ca3bd46 (patch)
treea73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kio/kssl/ksslx509map.h
parent682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff)
downloadtdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz
tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kio/kssl/ksslx509map.h')
-rw-r--r--kio/kssl/ksslx509map.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/kio/kssl/ksslx509map.h b/kio/kssl/ksslx509map.h
index 9cd841119..e0b37fb26 100644
--- a/kio/kssl/ksslx509map.h
+++ b/kio/kssl/ksslx509map.h
@@ -21,8 +21,8 @@
#ifndef _KSSLX509MAP_H
#define _KSSLX509MAP_H
-#include <qmap.h>
-#include <qstring.h>
+#include <tqmap.h>
+#include <tqstring.h>
#include <kdelibs_export.h>
@@ -43,7 +43,7 @@ public:
*
* @param name the map to parse
*/
- KSSLX509Map(const QString& name);
+ KSSLX509Map(const TQString& name);
/**
* Destroy this map
@@ -56,7 +56,7 @@ public:
* @param key the key
* @param value the value
*/
- void setValue(const QString& key, const QString& value);
+ void setValue(const TQString& key, const TQString& value);
/**
* Get the value of an entry in the map
@@ -65,7 +65,7 @@ public:
*
* @return the value
*/
- QString getValue(const QString& key) const;
+ TQString getValue(const TQString& key) const;
/**
* Reset (clear) the internal storage.
@@ -73,14 +73,14 @@ public:
* @param name if this is not empty, it will be parsed and used as
* the new map internally
*/
- void reset(const QString& name = "");
+ void reset(const TQString& name = "");
private:
class KSSLX509MapPrivate;
KSSLX509MapPrivate *d;
- QMap<QString, QString> m_pairs;
+ TQMap<TQString, TQString> m_pairs;
- void parse(const QString& name);
+ void parse(const TQString& name);
};
#endif