diff options
author | nijtmans <nijtmans> | 2010-02-17 19:21:15 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-02-17 19:21:15 (GMT) |
commit | 08118cf0531836d38a11540a687c8a92842014d5 (patch) | |
tree | 7e6bc8a3999b8bdb70d646dd25854cf5e389ba36 /generic/tkRectOval.c | |
parent | 98ad94bf967f4567ae47c4b74ffe11cc12f7d22f (diff) | |
download | tk-08118cf0531836d38a11540a687c8a92842014d5.zip tk-08118cf0531836d38a11540a687c8a92842014d5.tar.gz tk-08118cf0531836d38a11540a687c8a92842014d5.tar.bz2 |
CONSTify everything related to Tk_ConfigSpec
Diffstat (limited to 'generic/tkRectOval.c')
-rw-r--r-- | generic/tkRectOval.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkRectOval.c b/generic/tkRectOval.c index beb04f8..d300259 100644 --- a/generic/tkRectOval.c +++ b/generic/tkRectOval.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: tkRectOval.c,v 1.21 2010/01/18 20:43:38 nijtmans Exp $ + * RCS: @(#) $Id: tkRectOval.c,v 1.22 2010/02/17 19:21:16 nijtmans Exp $ */ #include "tkInt.h" @@ -60,7 +60,7 @@ static const Tk_CustomOption pixelOption = { TkPixelParseProc, TkPixelPrintProc, (ClientData) NULL }; -static Tk_ConfigSpec configSpecs[] = { +static const Tk_ConfigSpec configSpecs[] = { {TK_CONFIG_CUSTOM, "-activedash", NULL, NULL, NULL, Tk_Offset(RectOvalItem, outline.activeDash), TK_CONFIG_NULL_OK, &dashOption}, |