diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | win/tkWinButton.c | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2006-12-19 Jeff Hobbs <jeffh@ActiveState.com> + + * win/tkWinButton.c (TkpDisplayButton): lint init. [Bug 1618604] + 2006-12-19 Daniel Steffen <das@users.sourceforge.net> * unix/tcl.m4 (Darwin): --enable-64bit: verify linking with 64bit -arch diff --git a/win/tkWinButton.c b/win/tkWinButton.c index 2ad0c4b..30d8c8c 100644 --- a/win/tkWinButton.c +++ b/win/tkWinButton.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkWinButton.c,v 1.20.2.3 2003/10/10 00:03:57 hobbs Exp $ + * RCS: @(#) $Id: tkWinButton.c,v 1.20.2.4 2006/12/19 19:50:55 hobbs Exp $ */ #define OEMRESOURCE @@ -346,7 +346,7 @@ TkpDisplayButton(clientData) * compiler warning. */ int y, relief; register Tk_Window tkwin = butPtr->tkwin; - int width, height, haveImage = 0, haveText = 0, drawRing = 0; + int width = 0, height = 0, haveImage = 0, haveText = 0, drawRing = 0; RECT rect; int defaultWidth; /* Width of default ring. */ int offset; /* 0 means this is a label widget. 1 means |