diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
commit | ffe8a83e053396df448e9413828527613ca3bd46 (patch) | |
tree | a73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kio/kssl/ksslconnectioninfo.h | |
parent | 682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff) | |
download | tdelibs-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/ksslconnectioninfo.h')
-rw-r--r-- | kio/kssl/ksslconnectioninfo.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kio/kssl/ksslconnectioninfo.h b/kio/kssl/ksslconnectioninfo.h index 17a6af9bf..4d82c6ce2 100644 --- a/kio/kssl/ksslconnectioninfo.h +++ b/kio/kssl/ksslconnectioninfo.h @@ -21,7 +21,7 @@ #ifndef _KSSLCONNECTIONINFO_H #define _KSSLCONNECTIONINFO_H -#include <qstring.h> +#include <tqstring.h> #include <kdelibs_export.h> @@ -49,19 +49,19 @@ public: * Get the cipher in use. * @return the cipher in use */ - const QString& getCipher() const; + const TQString& getCipher() const; /** * Describe the cipher in use. * @return the cipher description (from OpenSSL) */ - const QString& getCipherDescription() const; + const TQString& getCipherDescription() const; /** * Get the version of the cipher in use. * @return the version of the cipher */ - const QString& getCipherVersion() const; + const TQString& getCipherVersion() const; /** * Get the number of bits of the cipher that are actually used. @@ -82,9 +82,9 @@ protected: // These are here so KSSL can access them directly // It's just as easy as making accessors - they're friends afterall! int m_iCipherUsedBits, m_iCipherBits; - QString m_cipherName; - QString m_cipherDescription; - QString m_cipherVersion; + TQString m_cipherName; + TQString m_cipherDescription; + TQString m_cipherVersion; private: class KSSLConnectionInfoPrivate; |