diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-13 04:44:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-13 04:44:50 +0000 |
commit | 675e9f7c0f5ca7e4d5e3c4b1a8fc7e4d0577c469 (patch) | |
tree | 40dfe374b33dc4d5bd656d6547f9ca474f6621e5 /krfb/libvncserver/main.c | |
parent | 36e4074ba1536a63a121293b20663a38cad836b7 (diff) | |
download | tdenetwork-675e9f7c0f5ca7e4d5e3c4b1a8fc7e4d0577c469.tar.gz tdenetwork-675e9f7c0f5ca7e4d5e3c4b1a8fc7e4d0577c469.zip |
Backed out accidental conversion of TSIGNAL to TQT_SIGNAL in automated TQT conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1162927 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'krfb/libvncserver/main.c')
-rw-r--r-- | krfb/libvncserver/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/krfb/libvncserver/main.c b/krfb/libvncserver/main.c index 5b318b8b..207e512d 100644 --- a/krfb/libvncserver/main.c +++ b/krfb/libvncserver/main.c @@ -150,7 +150,7 @@ void rfbScheduleCopyRegion(rfbScreenInfoPtr rfbScreen,sraRegionPtr copyRegion,in } else { sraRgnOr(cl->modifiedRegion,copyRegion); } - TQT_SIGNAL(cl->updateCond); + TSIGNAL(cl->updateCond); UNLOCK(cl->updateMutex); } @@ -208,7 +208,7 @@ void rfbMarkRegionAsModified(rfbScreenInfoPtr rfbScreen,sraRegionPtr modRegion) while((cl=rfbClientIteratorNext(iterator))) { LOCK(cl->updateMutex); sraRgnOr(cl->modifiedRegion,modRegion); - TQT_SIGNAL(cl->updateCond); + TSIGNAL(cl->updateCond); UNLOCK(cl->updateMutex); } @@ -308,7 +308,7 @@ clientInput(void *data) /* Get rid of the output thread. */ LOCK(cl->updateMutex); - TQT_SIGNAL(cl->updateCond); + TSIGNAL(cl->updateCond); UNLOCK(cl->updateMutex); IF_PTHREADS(pthread_join(output_thread, NULL)); |