aboutsummaryrefslogtreecommitdiff
path: root/generic/Icon.c
diff options
context:
space:
mode:
authorlecoanet2000-06-21 14:40:45 +0000
committerlecoanet2000-06-21 14:40:45 +0000
commit8881ae7cbc5e6e1d3f475c7de2534ce00ae1f2e8 (patch)
tree5526376e22ff534e267417cc06b2ba69c58cc0c3 /generic/Icon.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/Icon.c')
-rw-r--r--generic/Icon.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/Icon.c b/generic/Icon.c
index 2497846..ea4ecfd 100644
--- a/generic/Icon.c
+++ b/generic/Icon.c
@@ -744,7 +744,7 @@ Coords(Item item,
static ItemClassStruct ICON_ITEM_CLASS = {
sizeof(IconItemStruct),
False, /* has_fields */
- False, /* has_parts */
+ 0, /* num_parts */
True, /* has_anchors */
"icon",
icon_attrs,
@@ -761,6 +761,7 @@ static ItemClassStruct ICON_ITEM_CLASS = {
NULL, /* DeleteChars */
NULL, /* Cursor */
NULL, /* Index */
+ NULL, /* Part */
NULL, /* Selection */
NULL, /* Contour */
ComputeCoordinates,