diff options
author | dgp@users.sourceforge.net <dgp> | 2015-02-12 12:51:10 (GMT) |
---|---|---|
committer | dgp@users.sourceforge.net <dgp> | 2015-02-12 12:51:10 (GMT) |
commit | f0aaadb24379deb529a33fff3baf4482707864ce (patch) | |
tree | cc58c8bba591fe8ed4238d54fd0af7d2aa79393e /unix | |
parent | e162103b63087b9a3d1fbea4c87d8d247468cdbe (diff) | |
download | tk-f0aaadb24379deb529a33fff3baf4482707864ce.zip tk-f0aaadb24379deb529a33fff3baf4482707864ce.tar.gz tk-f0aaadb24379deb529a33fff3baf4482707864ce.tar.bz2 |
Silence some compiler warnings
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tkUnixButton.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tkUnixButton.c b/unix/tkUnixButton.c index 373f2e3..2101fda 100644 --- a/unix/tkUnixButton.c +++ b/unix/tkUnixButton.c @@ -360,7 +360,7 @@ TkpDisplayButton( * warning. */ int y, relief; Tk_Window tkwin = butPtr->tkwin; - int width, height, fullWidth, fullHeight; + int width = 0, height = 0, fullWidth, fullHeight; int textXOffset, textYOffset; int haveImage = 0, haveText = 0; int offset; /* 1 means this is a button widget, so we |