diff options
author | nijtmans <nijtmans> | 2008-11-09 20:51:28 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2008-11-09 20:51:28 (GMT) |
commit | df18c1fe67355d2bb0b36c28e8c9a66f1d5ae3c8 (patch) | |
tree | b0eb47d8c31b341a93520b3ddc364fcb3e5077df /generic/tkCanvPoly.c | |
parent | 6bb91a5313a57dceb34e2cd3764971af61368408 (diff) | |
download | tk-df18c1fe67355d2bb0b36c28e8c9a66f1d5ae3c8.zip tk-df18c1fe67355d2bb0b36c28e8c9a66f1d5ae3c8.tar.gz tk-df18c1fe67355d2bb0b36c28e8c9a66f1d5ae3c8.tar.bz2 |
make all Tk_CustomOption tables const and
remove unnecessary type cast
Diffstat (limited to 'generic/tkCanvPoly.c')
-rw-r--r-- | generic/tkCanvPoly.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/generic/tkCanvPoly.c b/generic/tkCanvPoly.c index c9c1e8d..e8a9f56 100644 --- a/generic/tkCanvPoly.c +++ b/generic/tkCanvPoly.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkCanvPoly.c,v 1.21 2008/11/01 16:14:30 dkf Exp $ + * RCS: @(#) $Id: tkCanvPoly.c,v 1.22 2008/11/09 20:51:28 nijtmans Exp $ */ #include <stdio.h> @@ -57,23 +57,23 @@ typedef struct PolygonItem { * Information used for parsing configuration specs: */ -static Tk_CustomOption smoothOption = { +static const Tk_CustomOption smoothOption = { TkSmoothParseProc, TkSmoothPrintProc, (ClientData) NULL }; -static Tk_CustomOption stateOption = { +static const Tk_CustomOption stateOption = { TkStateParseProc, TkStatePrintProc, (ClientData) 2 }; -static Tk_CustomOption tagsOption = { +static const Tk_CustomOption tagsOption = { Tk_CanvasTagsParseProc, Tk_CanvasTagsPrintProc, (ClientData) NULL }; -static Tk_CustomOption dashOption = { +static const Tk_CustomOption dashOption = { TkCanvasDashParseProc, TkCanvasDashPrintProc, (ClientData) NULL }; -static Tk_CustomOption offsetOption = { +static const Tk_CustomOption offsetOption = { TkOffsetParseProc, TkOffsetPrintProc, (ClientData) (TK_OFFSET_RELATIVE|TK_OFFSET_INDEX) }; -static Tk_CustomOption pixelOption = { +static const Tk_CustomOption pixelOption = { TkPixelParseProc, TkPixelPrintProc, (ClientData) NULL }; |