diff options
Diffstat (limited to 'generic/Reticle.c')
-rw-r--r-- | generic/Reticle.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/generic/Reticle.c b/generic/Reticle.c index a182243..ebc97d6 100644 --- a/generic/Reticle.c +++ b/generic/Reticle.c @@ -417,6 +417,7 @@ Pick(Item item, */ static int Coords(Item item, + int contour, int index, int cmd, ZnPoint **pts, @@ -469,9 +470,9 @@ PostScript(Item item, */ static ItemClassStruct RETICLE_ITEM_CLASS = { sizeof(ReticleItemStruct), - False, - False, - False, + False, /* has_fields */ + False, /* has_parts */ + False, /* has_anchors */ "reticle", reticle_attrs, Init, @@ -479,15 +480,17 @@ static ItemClassStruct RETICLE_ITEM_CLASS = { Destroy, Configure, Query, - NULL, - NULL, - NULL, + NULL, /* GetFieldSet */ + NULL, /* GetAnchor */ + NULL, /* GetClipVertices */ Coords, + NULL, /* Contour */ ComputeCoordinates, ToArea, Draw, IsSensitive, Pick, + NULL, /* PickVertex */ PostScript }; |