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