diff options
author | dgp <dgp@users.sourceforge.net> | 2004-09-24 17:35:46 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2004-09-24 17:35:46 (GMT) |
commit | 71ccd83260b9cb9ed67dc38726c9cbcb90991fcd (patch) | |
tree | 55666d57e381bc4e52809c8498d13eaf1716f1c8 /generic | |
parent | 68271be9690735d4117ea37b838e775048e00b35 (diff) | |
download | tk-71ccd83260b9cb9ed67dc38726c9cbcb90991fcd.zip tk-71ccd83260b9cb9ed67dc38726c9cbcb90991fcd.tar.gz tk-71ccd83260b9cb9ed67dc38726c9cbcb90991fcd.tar.bz2 |
* generic/tkCursor.c: Add missing initialization in debug routine.
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tkCursor.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/generic/tkCursor.c b/generic/tkCursor.c index 4fde82f..daa831b 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.9.2.1 2003/04/18 21:56:59 hobbs Exp $ + * RCS: @(#) $Id: tkCursor.c,v 1.9.2.2 2004/09/24 17:35:48 dgp Exp $ */ #include "tkPort.h" @@ -848,6 +848,9 @@ TkDebugCursor(tkwin, name) Tcl_Obj *resultPtr, *objPtr; TkDisplay *dispPtr = ((TkWindow *) tkwin)->dispPtr; + if (!dispPtr->cursorInit) { + CursorInit(dispPtr); + } resultPtr = Tcl_NewObj(); hashPtr = Tcl_FindHashEntry(&dispPtr->cursorNameTable, name); if (hashPtr != NULL) { |