diff options
author | hobbs <hobbs> | 1999-09-02 17:02:27 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 1999-09-02 17:02:27 (GMT) |
commit | b598f1d55d8f6a4aefb4d53d8639f8f04bf94cf2 (patch) | |
tree | 2e3e9d6028376eb6713f879832c3093d736307af /generic/tkCursor.c | |
parent | b96b8d8ca92722e9b2ab54e5451014284ae01105 (diff) | |
download | tk-b598f1d55d8f6a4aefb4d53d8639f8f04bf94cf2.zip tk-b598f1d55d8f6a4aefb4d53d8639f8f04bf94cf2.tar.gz tk-b598f1d55d8f6a4aefb4d53d8639f8f04bf94cf2.tar.bz2 |
1999-09-01 Jeff Hobbs <hobbs@scriptics.com>
* win/tkWinDraw.c:
* unix/tkUnixDraw.c: fixed header style for TkpDrawHighlightBorder
* generic/tkCanvas.c: fixed GC error (bg <> fg) in tkCanvas.c
(from code added to support TkpDrawHighlightBorder) [Bug: 2676]
* unix/aclocal.m4: added -bnoentry to the AIX-* flags
* generic/tkCursor.c: fixed equality error in GetCursorFromObj
[Bug: 2562]
Diffstat (limited to 'generic/tkCursor.c')
-rw-r--r-- | generic/tkCursor.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/generic/tkCursor.c b/generic/tkCursor.c index 87b284d..c8e5588 100644 --- a/generic/tkCursor.c +++ b/generic/tkCursor.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkCursor.c,v 1.3 1999/04/16 01:51:13 stanton Exp $ + * RCS: @(#) $Id: tkCursor.c,v 1.4 1999/09/02 17:02:28 hobbs Exp $ */ #include "tkPort.h" @@ -658,6 +658,7 @@ Tk_GetCursorFromObj(tkwin, objPtr) Tcl_Obj *objPtr; /* The object from which to get pixels. */ { TkCursor *cursorPtr = GetCursorFromObj(tkwin, objPtr); + /* GetCursorFromObj should never return NULL */ return cursorPtr->cursor; } @@ -716,7 +717,7 @@ GetCursorFromObj(tkwin, objPtr) for (cursorPtr = (TkCursor *) Tcl_GetHashValue(hashPtr); cursorPtr != NULL; cursorPtr = cursorPtr->nextPtr) { - if (Tk_Display(tkwin) != cursorPtr->display) { + if (Tk_Display(tkwin) == cursorPtr->display) { objPtr->internalRep.twoPtrValue.ptr1 = (VOID *) cursorPtr; cursorPtr->objRefCount++; return cursorPtr; |