diff options
author | Michele Calgaro <[email protected]> | 2024-01-08 11:53:33 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-08 11:53:33 +0900 |
commit | 67fab506ee588d8a91b479e4d80addfba6b09c0a (patch) | |
tree | 576473782e3d43119dbb2e9fa47666c464ba208d /qtmcop | |
parent | b7ed7de2142e6ddef8cd342c36c8b2dd76b07486 (diff) | |
download | arts-67fab506ee588d8a91b479e4d80addfba6b09c0a.tar.gz arts-67fab506ee588d8a91b479e4d80addfba6b09c0a.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'qtmcop')
-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; } |