diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 03:45:53 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 03:45:53 +0000 |
commit | 10308be19ef7fa44699562cc75946e7ea1fdf6b9 (patch) | |
tree | 4bc444c00a79e88105f2cfce5b6209994c413ca0 /dcop/dcopserver.h | |
parent | 307136d8eef0ba133b78ceee8e901138d4c996a1 (diff) | |
download | tdelibs-10308be19ef7fa44699562cc75946e7ea1fdf6b9.tar.gz tdelibs-10308be19ef7fa44699562cc75946e7ea1fdf6b9.zip |
Revert automated changes
Sorry guys, they are just not ready for prime time
Work will continue as always
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1212479 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'dcop/dcopserver.h')
-rw-r--r-- | dcop/dcopserver.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/dcop/dcopserver.h b/dcop/dcopserver.h index 1373c2a03..7b649ccf2 100644 --- a/dcop/dcopserver.h +++ b/dcop/dcopserver.h @@ -66,7 +66,7 @@ typedef TQValueList<TQCString> QCStringList; /** * @internal */ -class DCOPConnection : public TQSocketNotifier +class DCOPConnection : public QSocketNotifier { public: DCOPConnection( IceConn conn ); @@ -88,11 +88,11 @@ public: int notifyRegister; /** * When client A has called client B then for the duration of the call: - * A->waitingOnReply tqcontains B + * A->waitingOnReply contains B * and either - * B->waitingForReply tqcontains A + * B->waitingForReply contains A * or - * B->waitingForDelayedReply tqcontains A + * B->waitingForDelayedReply contains A * * This allows us to do proper bookkeeping in case client A, client B * or both unregister during the call. @@ -112,7 +112,7 @@ public: /** * @internal */ -class DCOPServer : public TQObject +class DCOPServer : public QObject { Q_OBJECT public: @@ -128,9 +128,9 @@ public: const TQCString &fun, const TQByteArray& data, TQCString& replyType, TQByteArray &replyData, IceConn iceConn); - DCOPConnection *tqfindApp(const TQCString &appId); - DCOPConnection *tqfindConn(IceConn iceConn) - { return clients.tqfind(iceConn); } + DCOPConnection *findApp(const TQCString &appId); + DCOPConnection *findConn(IceConn iceConn) + { return clients.find(iceConn); } void sendMessage(DCOPConnection *conn, const TQCString &sApp, const TQCString &rApp, const TQCString &rObj, |