aboutsummaryrefslogtreecommitdiff
path: root/generic/Triangles.c
diff options
context:
space:
mode:
authorlecoanet2002-04-08 13:46:18 +0000
committerlecoanet2002-04-08 13:46:18 +0000
commita29924752c636cd1777747fe532398e687e08f49 (patch)
tree8a13611347fc43e39f3b4ff522543c4ad9292e7e /generic/Triangles.c
parentf9e98b0b23e0bce9083a5056289436a24e22a982 (diff)
downloadtkzinc-a29924752c636cd1777747fe532398e687e08f49.zip
tkzinc-a29924752c636cd1777747fe532398e687e08f49.tar.gz
tkzinc-a29924752c636cd1777747fe532398e687e08f49.tar.bz2
tkzinc-a29924752c636cd1777747fe532398e687e08f49.tar.xz
Ajustements suite a la restructuration de Item.c et � la creation de Field.c
Diffstat (limited to 'generic/Triangles.c')
-rw-r--r--generic/Triangles.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/Triangles.c b/generic/Triangles.c
index 92827d7..70287f3 100644
--- a/generic/Triangles.c
+++ b/generic/Triangles.c
@@ -240,7 +240,7 @@ Configure(Item item,
{
int status = ZN_OK;
- status = ITEM_P.ConfigureAttributes((char *) item, -1, argc, argv, flags);
+ status = ZnConfigureAttributes(item->wi, item, tr_attrs, argc, argv, flags);
return status;
}
@@ -258,7 +258,7 @@ Query(Item item,
int argc,
Tcl_Obj *CONST argv[])
{
- if (ITEM_P.QueryAttribute((char *) item, -1, argv[0]) == ZN_ERROR) {
+ if (ZnQueryAttribute(item->wi, item, tr_attrs, argv[0]) == ZN_ERROR) {
return ZN_ERROR;
}