From 1288aec6556dbe6a0a344ef7f0d4bc5d81e554a7 Mon Sep 17 00:00:00 2001 From: dgp Date: Fri, 24 Sep 2004 17:36:22 +0000 Subject: * generic/tkCursor.c: Add missing initialization in debug routine. --- ChangeLog | 4 ++++ generic/tkCursor.c | 5 ++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 49e37d5..ec89021 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-09-24 Don Porter + + * generic/tkCursor.c: Add missing initialization in debug routine. + 2004-09-24 Vince Darley * library/text.tcl: corrected mousewheel scrolling [Bug 960190] diff --git a/generic/tkCursor.c b/generic/tkCursor.c index 13a707a..45dd96d 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.11 2004/01/13 02:06:00 davygrvy Exp $ + * RCS: @(#) $Id: tkCursor.c,v 1.12 2004/09/24 17:36:22 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) { -- cgit v0.12