aboutsummaryrefslogtreecommitdiff
path: root/generic/Arc.c
diff options
context:
space:
mode:
authorlecoanet2000-06-21 14:40:45 +0000
committerlecoanet2000-06-21 14:40:45 +0000
commit8881ae7cbc5e6e1d3f475c7de2534ce00ae1f2e8 (patch)
tree5526376e22ff534e267417cc06b2ba69c58cc0c3 /generic/Arc.c
parent69da3e8f8e5e9b3dc8d757a7a2f389f122eadc02 (diff)
downloadtkzinc-8881ae7cbc5e6e1d3f475c7de2534ce00ae1f2e8.zip
tkzinc-8881ae7cbc5e6e1d3f475c7de2534ce00ae1f2e8.tar.gz
tkzinc-8881ae7cbc5e6e1d3f475c7de2534ce00ae1f2e8.tar.bz2
tkzinc-8881ae7cbc5e6e1d3f475c7de2534ce00ae1f2e8.tar.xz
Ajustement des structures de classe pour ajout de la m�thode Part.
Diffstat (limited to 'generic/Arc.c')
-rw-r--r--generic/Arc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/Arc.c b/generic/Arc.c
index 797f671..a4f83d8 100644
--- a/generic/Arc.c
+++ b/generic/Arc.c
@@ -1588,7 +1588,7 @@ PostScript(Item item,
static ItemClassStruct ARC_ITEM_CLASS = {
sizeof(ArcItemStruct),
False, /* has_fields */
- False, /* has_parts */
+ 0, /* num_parts */
False, /* has_anchors */
"arc",
arc_attrs,
@@ -1605,6 +1605,7 @@ static ItemClassStruct ARC_ITEM_CLASS = {
NULL, /* DeleteChars */
NULL, /* Cursor */
NULL, /* Index */
+ NULL, /* Part */
NULL, /* Selection */
NULL, /* Contour */
ComputeCoordinates,