diff options
author | nijtmans <nijtmans> | 2008-11-05 22:20:59 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2008-11-05 22:20:59 (GMT) |
commit | 436906415b673fbac6d7ce14621ad07a9a78b4a2 (patch) | |
tree | bb9005f0a49cd1cc708acc016a5b556166154d74 /unix/tkUnixButton.c | |
parent | a7112d75b06f0c7bba86d032d765f74116f4c41e (diff) | |
download | tk-436906415b673fbac6d7ce14621ad07a9a78b4a2.zip tk-436906415b673fbac6d7ce14621ad07a9a78b4a2.tar.gz tk-436906415b673fbac6d7ce14621ad07a9a78b4a2.tar.bz2 |
fix [Bug 2226093] const changes not all correct
more internal -Wwrite-string warning fixes
Diffstat (limited to 'unix/tkUnixButton.c')
-rw-r--r-- | unix/tkUnixButton.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tkUnixButton.c b/unix/tkUnixButton.c index b8be6b3..75e4df3 100644 --- a/unix/tkUnixButton.c +++ b/unix/tkUnixButton.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkUnixButton.c,v 1.25 2007/12/13 15:28:50 dgp Exp $ + * RCS: @(#) $Id: tkUnixButton.c,v 1.26 2008/11/05 22:20:59 nijtmans Exp $ */ #include "tkInt.h" @@ -57,7 +57,7 @@ Tk_ClassProcs tkpButtonProcs = { */ /* XPM */ -static char *button_images[] = { +static const char *button_images[] = { /* width height ncolors chars_per_pixel */ "52 26 7 1", /* colors */ |