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
v3.5.13-sru
tpearson 14 years ago
parent 36e4074ba1
commit 675e9f7c0f

@ -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));

@ -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);

@ -318,7 +318,7 @@ rfbCloseClient(cl)
close(cl->sock);
cl->sock = -1;
}
TQT_SIGNAL(cl->updateCond);
TSIGNAL(cl->updateCond);
UNLOCK(cl->updateMutex);
}

Loading…
Cancel
Save