summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-13 04:44:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-13 04:44:50 +0000
commit675e9f7c0f5ca7e4d5e3c4b1a8fc7e4d0577c469 (patch)
tree40dfe374b33dc4d5bd656d6547f9ca474f6621e5
parent36e4074ba1536a63a121293b20663a38cad836b7 (diff)
downloadtdenetwork-675e9f7c.tar.gz
tdenetwork-675e9f7c.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
-rw-r--r--krfb/libvncserver/main.c6
-rw-r--r--krfb/libvncserver/rfbserver.c4
-rw-r--r--krfb/libvncserver/sockets.c2
3 files changed, 6 insertions, 6 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));
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);
diff --git a/krfb/libvncserver/sockets.c b/krfb/libvncserver/sockets.c
index c375e928..68025b3d 100644
--- a/krfb/libvncserver/sockets.c
+++ b/krfb/libvncserver/sockets.c
@@ -318,7 +318,7 @@ rfbCloseClient(cl)
close(cl->sock);
cl->sock = -1;
}
- TQT_SIGNAL(cl->updateCond);
+ TSIGNAL(cl->updateCond);
UNLOCK(cl->updateMutex);
}