summaryrefslogtreecommitdiffstats
path: root/cursor.c
diff options
context:
space:
mode:
authordscho <dscho>2002-02-18 06:43:54 +0000
committerdscho <dscho>2002-02-18 06:43:54 +0000
commit45a4b4a2235adecc925182b27959db62b5954a26 (patch)
treede00aee4fd77b81f768d00416c9eda47d21e22b3 /cursor.c
parentfbf2c977fe4c70fa2e551ecc0264c4b8184386f2 (diff)
downloadlibtdevnc-45a4b4a2235adecc925182b27959db62b5954a26.tar.gz
libtdevnc-45a4b4a2235adecc925182b27959db62b5954a26.zip
changes from Tim Jansen: threading issues, new client can be rejected, and more
Diffstat (limited to 'cursor.c')
-rw-r--r--cursor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cursor.c b/cursor.c
index 5e86de1..057ff5e 100644
--- a/cursor.c
+++ b/cursor.c
@@ -42,7 +42,7 @@ rfbSendCursorShape(cl)
CARD8 bitmapByte;
pCursor = cl->screen->getCursorPtr(cl);
- //if(!pCursor) return TRUE;
+ /*if(!pCursor) return TRUE;*/
if (cl->useRichCursorEncoding) {
if(pCursor && !pCursor->richSource)
@@ -227,7 +227,7 @@ rfbCursorPtr rfbMakeXCursor(int width,int height,char* cursorString,char* maskSt
cursor->width=width;
cursor->height=height;
- //cursor->backRed=cursor->backGreen=cursor->backBlue=0xffff;
+ /*cursor->backRed=cursor->backGreen=cursor->backBlue=0xffff;*/
cursor->foreRed=cursor->foreGreen=cursor->foreBlue=0xffff;
cursor->source = (char*)calloc(w,height);