summaryrefslogtreecommitdiffstats
path: root/kio/kssl/ksslinfodlg.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/ksslinfodlg.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/ksslinfodlg.h')
-rw-r--r--kio/kssl/ksslinfodlg.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/kio/kssl/ksslinfodlg.h b/kio/kssl/ksslinfodlg.h
index b7ff3d2eb..c1591f07d 100644
--- a/kio/kssl/ksslinfodlg.h
+++ b/kio/kssl/ksslinfodlg.h
@@ -27,7 +27,7 @@
#include "ksslx509map.h"
#include "ksslcertificate.h"
#include "kssl.h"
-#include <qscrollview.h>
+#include <tqscrollview.h>
class QWidget;
class KSSLCertBox;
@@ -58,7 +58,7 @@ public:
* @param name the internal name of this instance
* @param modal true if the dialog should be modal
*/
- KSSLInfoDlg(bool secureConnection, QWidget *parent=0L, const char *name=0L, bool modal=false);
+ KSSLInfoDlg(bool secureConnection, TQWidget *parent=0L, const char *name=0L, bool modal=false);
/**
* Destroy this dialog
@@ -87,9 +87,9 @@ public:
* @param certState the certificate state (valid, invalid, etc)
*/
void setup(KSSLCertificate *cert,
- const QString& ip, const QString& url,
- const QString& cipher, const QString& cipherdesc,
- const QString& sslversion, int usedbits, int bits,
+ const TQString& ip, const TQString& url,
+ const TQString& cipher, const TQString& cipherdesc,
+ const TQString& sslversion, int usedbits, int bits,
KSSLCertificate::KSSLValidation certState);
/**
@@ -101,13 +101,13 @@ public:
* @param ip the ip of the remote host
* @param url the url being accessed
*/
- void setup( KSSL & ssl, const QString & ip, const QString & url );
+ void setup( KSSL & ssl, const TQString & ip, const TQString & url );
/**
* Set the errors that were encountered while validating the site
* certificate.
*/
- void setCertState(const QString &errorNrs);
+ void setCertState(const TQString &errorNrs);
/**
* Utility function to generate the widget which displays the detailed
@@ -118,10 +118,10 @@ public:
* @param mailCatcher the class which catches click events on e-mail
* addresses
*/
- static KSSLCertBox *certInfoWidget(QWidget *parent, const QString &certName, QWidget *mailCatcher=0);
+ static KSSLCertBox *certInfoWidget(TQWidget *parent, const TQString &certName, TQWidget *mailCatcher=0);
private:
- QScrollView *buildCertInfo(const QString &certName);
+ TQScrollView *buildCertInfo(const TQString &certName);
void displayCert(KSSLCertificate *x);
class KSSLInfoDlgPrivate;
@@ -129,8 +129,8 @@ private:
private slots:
void launchConfig();
- void urlClicked(const QString &url);
- void mailClicked(const QString &url);
+ void urlClicked(const TQString &url);
+ void mailClicked(const TQString &url);
void slotChain(int x);
};
@@ -146,7 +146,7 @@ private slots:
* @see KSSLInfoDlg
* @short KDE SSL Certificate Box
*/
-class KIO_EXPORT KSSLCertBox : public QScrollView {
+class KIO_EXPORT KSSLCertBox : public TQScrollView {
public:
/**
* Construct a certificate box
@@ -155,7 +155,7 @@ public:
* @param name the internal name of this instance
* @param f widget flags for the object
*/
- KSSLCertBox(QWidget *parent=0L, const char *name=0L, WFlags f=0);
+ KSSLCertBox(TQWidget *parent=0L, const char *name=0L, WFlags f=0);
/**
* Change the contents of the widget
@@ -163,10 +163,10 @@ public:
* @param certName the name ("subject") of the certificate
* @param mailCatcher the widget which catches the url open events
*/
- void setValues(QString certName, QWidget *mailCatcher=0L);
+ void setValues(TQString certName, TQWidget *mailCatcher=0L);
private:
- QFrame *_frame;
+ TQFrame *_frame;
};
#endif