summaryrefslogtreecommitdiffstats
path: root/kio/kio/slaveinterface.h
diff options
context:
space:
mode:
Diffstat (limited to 'kio/kio/slaveinterface.h')
-rw-r--r--kio/kio/slaveinterface.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/kio/kio/slaveinterface.h b/kio/kio/slaveinterface.h
index 5cca5dd77..d5b680f63 100644
--- a/kio/kio/slaveinterface.h
+++ b/kio/kio/slaveinterface.h
@@ -89,7 +89,7 @@ class SlaveInterfacePrivate;
*
* A call to foo() results in a call to slotFoo() on the other end.
*/
-class KIO_EXPORT SlaveInterface : public QObject
+class KIO_EXPORT SlaveInterface : public TQObject
{
Q_OBJECT
@@ -252,7 +252,7 @@ private:
inline TQDataStream &operator >>(TQDataStream &s, KIO::UDSAtom &a )
{
- Q_INT32 l;
+ TQ_INT32 l;
s >> a.m_uds;
if ( a.m_uds & KIO::UDS_LONG ) {
@@ -273,7 +273,7 @@ inline TQDataStream &operator <<(TQDataStream &s, const KIO::UDSAtom &a )
s << a.m_uds;
if ( a.m_uds & KIO::UDS_LONG )
- s << (Q_INT32) a.m_long;
+ s << (TQ_INT32) a.m_long;
else if ( a.m_uds & KIO::UDS_STRING )
s << a.m_str;
else {} // DIE!