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/rfbserver.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/rfbserver.c')
-rw-r--r-- | krfb/libvncserver/rfbserver.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/krfb/libvncserver/rfbserver.c b/krfb/libvncserver/rfbserver.c index baf21bb1..66cc4ee3 100644 --- a/krfb/libvncserver/rfbserver.c +++ b/krfb/libvncserver/rfbserver.c @@ -71,7 +71,7 @@ void rfbDecrClientRef(rfbClientPtr cl) LOCK(cl->refCountMutex); cl->refCount--; if(cl->refCount<=0) /* just to be sure also < 0 */ - TQT_SIGNAL(cl->deleteCond); + TSIGNAL(cl->deleteCond); UNLOCK(cl->refCountMutex); } #else @@ -837,7 +837,7 @@ rfbProcessClientNormalMessage(cl) sraRgnOr(cl->modifiedRegion,tmpRegion); sraRgnSubtract(cl->copyRegion,tmpRegion); } - TQT_SIGNAL(cl->updateCond); + TSIGNAL(cl->updateCond); UNLOCK(cl->updateMutex); sraRgnDestroy(tmpRegion); |