diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-09-29 16:04:01 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-09-29 16:04:01 (GMT) |
commit | 9b1cc4cb8ccab0237af7b2cd0031a14aab5f26e6 (patch) | |
tree | 4ab2f7f0490b71a652f3ba08e89e57c4364245ce /generic/tkCanvPoly.c | |
parent | 1a2ba0dcdc75913d1b575be90bd6fb51e3073347 (diff) | |
download | tk-9b1cc4cb8ccab0237af7b2cd0031a14aab5f26e6.zip tk-9b1cc4cb8ccab0237af7b2cd0031a14aab5f26e6.tar.gz tk-9b1cc4cb8ccab0237af7b2cd0031a14aab5f26e6.tar.bz2 |
Fix 2 build problems, one with XPutImage on Windows, one with -fill option
Diffstat (limited to 'generic/tkCanvPoly.c')
-rw-r--r-- | generic/tkCanvPoly.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tkCanvPoly.c b/generic/tkCanvPoly.c index d68e8ad..ffe14f8 100644 --- a/generic/tkCanvPoly.c +++ b/generic/tkCanvPoly.c @@ -113,7 +113,7 @@ static const Tk_ConfigSpec configSpecs[] = { {TK_CONFIG_CUSTOM, "-disabledwidth", NULL, NULL, "0.0", offsetof(PolygonItem, outline.disabledWidth), TK_CONFIG_DONT_SET_DEFAULT, &pixelOption}, - {TK_CONFIG_COLOR, "-fill", NULL, NULL, offsetof(PolygonItem, fillColor), TK_CONFIG_NULL_OK, NULL}, + {TK_CONFIG_COLOR, "-fill", NULL, NULL, NULL, offsetof(PolygonItem, fillColor), TK_CONFIG_NULL_OK, NULL}, {TK_CONFIG_JOIN_STYLE, "-joinstyle", NULL, NULL, "round", offsetof(PolygonItem, joinStyle), TK_CONFIG_DONT_SET_DEFAULT, NULL}, {TK_CONFIG_CUSTOM, "-offset", NULL, NULL, |