summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/jabber/libiris/cutestuff/network/ndns.h
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/protocols/jabber/libiris/cutestuff/network/ndns.h')
-rw-r--r--kopete/protocols/jabber/libiris/cutestuff/network/ndns.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/kopete/protocols/jabber/libiris/cutestuff/network/ndns.h b/kopete/protocols/jabber/libiris/cutestuff/network/ndns.h
index ccbc6b57..48243e30 100644
--- a/kopete/protocols/jabber/libiris/cutestuff/network/ndns.h
+++ b/kopete/protocols/jabber/libiris/cutestuff/network/ndns.h
@@ -21,11 +21,11 @@
#ifndef CS_NDNS_H
#define CS_NDNS_H
-#include<qobject.h>
-#include<qcstring.h>
-#include<qthread.h>
-#include<qmutex.h>
-#include<qhostaddress.h>
+#include<tqobject.h>
+#include<tqcstring.h>
+#include<tqthread.h>
+#include<tqmutex.h>
+#include<tqhostaddress.h>
// CS_NAMESPACE_BEGIN
@@ -36,24 +36,24 @@ class NDns : public QObject
{
Q_OBJECT
public:
- NDns(QObject *parent=0);
+ NDns(TQObject *parent=0);
~NDns();
- void resolve(const QString &);
+ void resolve(const TQString &);
void stop();
bool isBusy() const;
uint result() const;
- QString resultString() const;
+ TQString resultString() const;
signals:
void resultsReady();
private:
- QHostAddress addr;
+ TQHostAddress addr;
friend class NDnsManager;
- void finished(const QHostAddress &);
+ void finished(const TQHostAddress &);
};
class NDnsManager : public QObject
@@ -65,7 +65,7 @@ public:
//! \if _hide_doc_
protected:
- bool event(QEvent *);
+ bool event(TQEvent *);
//! \endif
private slots:
@@ -77,7 +77,7 @@ private:
friend class NDns;
NDnsManager();
- void resolve(NDns *self, const QString &name);
+ void resolve(NDns *self, const TQString &name);
void stop(NDns *self);
bool isBusy(const NDns *self) const;
void tryDestroy();