aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Bezier.c5
-rw-r--r--generic/Arc.c5
-rw-r--r--generic/Icon.c5
-rw-r--r--generic/Map.c5
-rw-r--r--generic/Rectangle.c5
-rw-r--r--generic/Reticle.c5
-rw-r--r--generic/Tabular.c5
7 files changed, 35 insertions, 0 deletions
diff --git a/Bezier.c b/Bezier.c
index b966593..5ad1230 100644
--- a/Bezier.c
+++ b/Bezier.c
@@ -1125,6 +1125,11 @@ static ItemClassStruct BEZIER_ITEM_CLASS = {
NULL,
GetClipVertices,
Coords,
+ NULL, /* InsertChars */
+ NULL, /* DeleteChars */
+ NULL, /* Cursor */
+ NULL, /* Index */
+ NULL, /* Selection */
NULL, /* Contour */
ComputeCoordinates,
ToArea,
diff --git a/generic/Arc.c b/generic/Arc.c
index 3fab559..917eb0a 100644
--- a/generic/Arc.c
+++ b/generic/Arc.c
@@ -1629,6 +1629,11 @@ static ItemClassStruct ARC_ITEM_CLASS = {
NULL, /* GetAnchor */
GetClipVertices,
Coords,
+ NULL, /* InsertChars */
+ NULL, /* DeleteChars */
+ NULL, /* Cursor */
+ NULL, /* Index */
+ NULL, /* Selection */
NULL, /* Contour */
ComputeCoordinates,
ToArea,
diff --git a/generic/Icon.c b/generic/Icon.c
index 7a89753..140143c 100644
--- a/generic/Icon.c
+++ b/generic/Icon.c
@@ -757,6 +757,11 @@ static ItemClassStruct ICON_ITEM_CLASS = {
GetAnchor,
GetClipVertices,
Coords,
+ NULL, /* InsertChars */
+ NULL, /* DeleteChars */
+ NULL, /* Cursor */
+ NULL, /* Index */
+ NULL, /* Selection */
NULL, /* Contour */
ComputeCoordinates,
ToArea,
diff --git a/generic/Map.c b/generic/Map.c
index 37b3531..66587ea 100644
--- a/generic/Map.c
+++ b/generic/Map.c
@@ -1386,6 +1386,11 @@ static ItemClassStruct MAP_ITEM_CLASS = {
NULL, /* GetAnchor */
NULL, /* GetClipVertices */
Coords,
+ NULL, /* InsertChars */
+ NULL, /* DeleteChars */
+ NULL, /* Cursor */
+ NULL, /* Index */
+ NULL, /* Selection */
NULL, /* Contour */
ComputeCoordinates,
ToArea,
diff --git a/generic/Rectangle.c b/generic/Rectangle.c
index b1be39f..c85dc98 100644
--- a/generic/Rectangle.c
+++ b/generic/Rectangle.c
@@ -849,6 +849,11 @@ static ItemClassStruct RECTANGLE_ITEM_CLASS = {
NULL, /* GetAnchor */
GetClipVertices,
Coords,
+ NULL, /* InsertChars */
+ NULL, /* DeleteChars */
+ NULL, /* Cursor */
+ NULL, /* Index */
+ NULL, /* Selection */
NULL, /* Contour */
ComputeCoordinates,
ToArea,
diff --git a/generic/Reticle.c b/generic/Reticle.c
index ebc97d6..6777182 100644
--- a/generic/Reticle.c
+++ b/generic/Reticle.c
@@ -484,6 +484,11 @@ static ItemClassStruct RETICLE_ITEM_CLASS = {
NULL, /* GetAnchor */
NULL, /* GetClipVertices */
Coords,
+ NULL, /* InsertChars */
+ NULL, /* DeleteChars */
+ NULL, /* Cursor */
+ NULL, /* Index */
+ NULL, /* Selection */
NULL, /* Contour */
ComputeCoordinates,
ToArea,
diff --git a/generic/Tabular.c b/generic/Tabular.c
index 6f40926..2c91706 100644
--- a/generic/Tabular.c
+++ b/generic/Tabular.c
@@ -513,6 +513,11 @@ static ItemClassStruct TABULAR_ITEM_CLASS = {
GetAnchor,
GetClipVertices,
Coords,
+ NULL, /* InsertChars */
+ NULL, /* DeleteChars */
+ NULL, /* Cursor */
+ NULL, /* Index */
+ NULL, /* Selection */
NULL, /* Contour */
ComputeCoordinates,
ToArea,