aboutsummaryrefslogtreecommitdiff
path: root/generic/Reticle.c
diff options
context:
space:
mode:
authorlecoanet2000-06-21 14:40:45 +0000
committerlecoanet2000-06-21 14:40:45 +0000
commit8881ae7cbc5e6e1d3f475c7de2534ce00ae1f2e8 (patch)
tree5526376e22ff534e267417cc06b2ba69c58cc0c3 /generic/Reticle.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/Reticle.c')
-rw-r--r--generic/Reticle.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/Reticle.c b/generic/Reticle.c
index 8a52792..5250634 100644
--- a/generic/Reticle.c
+++ b/generic/Reticle.c
@@ -471,7 +471,7 @@ PostScript(Item item,
static ItemClassStruct RETICLE_ITEM_CLASS = {
sizeof(ReticleItemStruct),
False, /* has_fields */
- False, /* has_parts */
+ 0, /* num_parts */
False, /* has_anchors */
"reticle",
reticle_attrs,
@@ -488,6 +488,7 @@ static ItemClassStruct RETICLE_ITEM_CLASS = {
NULL, /* DeleteChars */
NULL, /* Cursor */
NULL, /* Index */
+ NULL, /* Part */
NULL, /* Selection */
NULL, /* Contour */
ComputeCoordinates,