diff options
author | dgp <dgp@users.sourceforge.net> | 2001-07-18 16:16:53 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2001-07-18 16:16:53 (GMT) |
commit | 4a18063e83bf962a406974d23df4a830eb98724e (patch) | |
tree | f8547376bb73bd82874f3e8fbd4c75e1c1088887 | |
parent | 7579591f206b6d54248431b9488d158e82659685 (diff) | |
download | tk-4a18063e83bf962a406974d23df4a830eb98724e.zip tk-4a18063e83bf962a406974d23df4a830eb98724e.tar.gz tk-4a18063e83bf962a406974d23df4a830eb98724e.tar.bz2 |
* Correction to merge from HEAD
-rw-r--r-- | generic/tkCanvPoly.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/generic/tkCanvPoly.c b/generic/tkCanvPoly.c index 3d56c39..4869e32 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.6.4.2 2001/07/18 16:15:27 dgp Exp $ + * RCS: @(#) $Id: tkCanvPoly.c,v 1.6.4.3 2001/07/18 16:16:53 dgp Exp $ */ #include <stdio.h> @@ -1491,9 +1491,8 @@ PolygonToArea(canvas, itemPtr, rectPtr) */ inside = TkPolygonToArea(polyPoints, numPoints, rectPtr); if (inside==0) goto donearea; - - if (polyPtr->outline.gc == None) goto donearea ; + if (polyPtr->outline.gc == None) goto donearea ; /* * Iterate through all of the edges of the line, computing a polygon |