diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-08 11:53:33 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-10 09:57:23 +0900 |
commit | c96b8debfb943853ffed73ed07f991ca3155eeba (patch) | |
tree | 8c916a544c1fdd9bb7e3b95c1a14617713a7fd8b | |
parent | 486b0b0955e2f98f6d8ae68b4d7a34c61a26fc63 (diff) | |
download | arts-c96b8debfb943853ffed73ed07f991ca3155eeba.tar.gz arts-c96b8debfb943853ffed73ed07f991ca3155eeba.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 67fab506ee588d8a91b479e4d80addfba6b09c0a)
-rw-r--r-- | qtmcop/qiomanager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qtmcop/qiomanager.cpp b/qtmcop/qiomanager.cpp index ee60977..62d4a6a 100644 --- a/qtmcop/qiomanager.cpp +++ b/qtmcop/qiomanager.cpp @@ -70,7 +70,7 @@ QIOWatch::QIOWatch(int fd, int type, IONotify *notify, : _fd(fd), _type(type), _client(notify), _reentrant(reentrant) { qsocketnotify = new TQSocketNotifier(fd,qtype,this); - connect(qsocketnotify,TQT_SIGNAL(activated(int)),this,TQT_SLOT(notify(int))); + connect(qsocketnotify,TQ_SIGNAL(activated(int)),this,TQ_SLOT(notify(int))); } void QIOWatch::notify(int socket) @@ -85,7 +85,7 @@ void QIOWatch::notify(int socket) QTimeWatch::QTimeWatch(int milliseconds, TimeNotify *notify) { timer = new TQTimer(this); - connect( timer, TQT_SIGNAL(timeout()), this, TQT_SLOT(notify()) ); + connect( timer, TQ_SIGNAL(timeout()), this, TQ_SLOT(notify()) ); timer->start(milliseconds); _client = notify; } |