diff options
author | nijtmans <nijtmans> | 2008-11-09 21:53:39 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2008-11-09 21:53:39 (GMT) |
commit | dd6a96ceda09d92cf81990911e682d0ccc248adb (patch) | |
tree | a254fbcdb8ffa92e12bd6444d93f61ff50941950 /generic/tkCanvPoly.c | |
parent | e2a656affce975f610d3296f1d22485219790066 (diff) | |
download | tk-dd6a96ceda09d92cf81990911e682d0ccc248adb.zip tk-dd6a96ceda09d92cf81990911e682d0ccc248adb.tar.gz tk-dd6a96ceda09d92cf81990911e682d0ccc248adb.tar.bz2 |
One more (hopefully the last) signature change
in Tk_CreateSmoothMethod.
Diffstat (limited to 'generic/tkCanvPoly.c')
-rw-r--r-- | generic/tkCanvPoly.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkCanvPoly.c b/generic/tkCanvPoly.c index e8a9f56..bbdf91a 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.22 2008/11/09 20:51:28 nijtmans Exp $ + * RCS: @(#) $Id: tkCanvPoly.c,v 1.23 2008/11/09 21:53:39 nijtmans Exp $ */ #include <stdio.h> @@ -46,7 +46,7 @@ typedef struct PolygonItem { Pixmap disabledFillStipple; /* Stipple bitmap for filling polygon if state * is disabled. */ GC fillGC; /* Graphics context for filling polygon. */ - Tk_SmoothMethod *smooth; /* Non-zero means draw shape smoothed (i.e. + const Tk_SmoothMethod *smooth; /* Non-zero means draw shape smoothed (i.e. * with Bezier splines). */ int splineSteps; /* Number of steps in each spline segment. */ int autoClosed; /* Zero means the given polygon was closed, |