aboutsummaryrefslogtreecommitdiff
path: root/generic/Map.c
diff options
context:
space:
mode:
Diffstat (limited to 'generic/Map.c')
-rw-r--r--generic/Map.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/generic/Map.c b/generic/Map.c
index 55ce5c0..37b3531 100644
--- a/generic/Map.c
+++ b/generic/Map.c
@@ -1336,6 +1336,7 @@ Pick(Item item,
*/
static int
Coords(Item item,
+ int contour,
int index,
int cmd,
ZnPoint **pts,
@@ -1371,9 +1372,9 @@ PostScript(Item item,
static ItemClassStruct MAP_ITEM_CLASS = {
sizeof(MapItemStruct),
- False,
- False,
- False,
+ False, /* has_fields */
+ False, /* has_parts */
+ False, /* has_anchors */
"map",
map_attrs,
Init,
@@ -1381,15 +1382,17 @@ static ItemClassStruct MAP_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
};