summaryrefslogtreecommitdiffstats
path: root/konversation/src/sslsocket.h
diff options
context:
space:
mode:
Diffstat (limited to 'konversation/src/sslsocket.h')
-rw-r--r--konversation/src/sslsocket.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/konversation/src/sslsocket.h b/konversation/src/sslsocket.h
index aa15de0..596cb5e 100644
--- a/konversation/src/sslsocket.h
+++ b/konversation/src/sslsocket.h
@@ -29,11 +29,11 @@ class SSLSocket : public KStreamSocket
Q_OBJECT
public:
- explicit SSLSocket(QWidget* serverParent, QObject* parent = 0L, const char* name = 0L);
+ explicit SSLSocket(TQWidget* serverParent, TQObject* parent = 0L, const char* name = 0L);
~SSLSocket();
void showInfoDialog();
- const QString details();
+ const TQString details();
Q_LONG writeBlock (const char *data, Q_ULONG len);
Q_LONG readBlock (char *data, Q_ULONG maxlen);
@@ -45,7 +45,7 @@ class SSLSocket : public KStreamSocket
/** Emitted when there is a problem with SSL
* @param reason An error string that has already been through i18n
*/
- void sslFailure(const QString& reason);
+ void sslFailure(const TQString& reason);
void sslInitDone();
private:
@@ -53,7 +53,7 @@ class SSLSocket : public KStreamSocket
int verifyCertificate();
void showSSLInfoDialog();
- QWidget* m_serverParent;
+ TQWidget* m_serverParent;
SSLSocketPrivate* d;
};