[goffice] removed use-spline property of polygons until implemented



commit 17d6dcbc9aa1c78150f7c21d96ecb195e7291d55
Author: Jean Brefort <jean brefort normalesup org>
Date:   Tue Oct 6 18:53:18 2009 +0200

    removed use-spline property of polygons until implemented

 ChangeLog                     |    8 +++++++-
 goffice/canvas/goc-polygon.c  |    4 ++--
 goffice/canvas/goc-polyline.c |    4 ++--
 3 files changed, 11 insertions(+), 5 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index e710ea6..053773f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2009-10-06  Jean Brefort  <jean brefort normalesup org>
 
+	* goffice/canvas/goc-polygon.c (goc_polygon_class_init): removed not
+	yet implemented "use-spline" property for now.
+	* goffice/canvas/goc-polyline.c (goc_polyline_class_init): ditto.
+
+2009-10-06  Jean Brefort  <jean brefort normalesup org>
+
 	* docs/reference/goffice-0.8-sections.txt: add more symbols.
 	* goffice/canvas/goc-ellipse.c (goc_ellipse_class_init): fixed description
 	of properties.
@@ -26,7 +32,7 @@
 2009-10-04  Jean Brefort  <jean brefort normalesup org>
 
 	* docs/reference/goffice-0.8-sections.txt: more work.
-	* goffice/canvas/goc-group.c (goc_group_add_child): simplified and
+	* goffice/canvas/goc-group.c (goc_group_add_child): simplify and
 	document GocItem API.
 	* goffice/canvas/goc-item.c (_goc_item_update_bounds),
 	(goc_item_new), (goc_item_invalidate), (goc_item_get_bounds): ditto.
diff --git a/goffice/canvas/goc-polygon.c b/goffice/canvas/goc-polygon.c
index a7c5eef..6ba060e 100644
--- a/goffice/canvas/goc-polygon.c
+++ b/goffice/canvas/goc-polygon.c
@@ -242,12 +242,12 @@ goc_polygon_class_init (GocItemClass *item_klass)
                  g_param_spec_boxed ("points", _("points"), _("The polygon vertices"),
 				     GOC_TYPE_POINTS,
 				     GSF_PARAM_STATIC | G_PARAM_READWRITE));
-	g_object_class_install_property (obj_klass, POLYGON_PROP_SPLINE,
+/*	g_object_class_install_property (obj_klass, POLYGON_PROP_SPLINE,
 		g_param_spec_boolean ("use-spline",
 				      _("Use spline"),
 				      _("Use a Bezier closed cubic spline as contour"),
 				      FALSE,
-				      GSF_PARAM_STATIC | G_PARAM_READABLE));
+				      GSF_PARAM_STATIC | G_PARAM_READABLE));*/
 
 	item_klass->update_bounds = goc_polygon_update_bounds;
 	item_klass->distance = goc_polygon_distance;
diff --git a/goffice/canvas/goc-polyline.c b/goffice/canvas/goc-polyline.c
index fdd81f8..29188a4 100644
--- a/goffice/canvas/goc-polyline.c
+++ b/goffice/canvas/goc-polyline.c
@@ -203,12 +203,12 @@ goc_polyline_class_init (GocItemClass *item_klass)
                  g_param_spec_boxed ("points", _("points"), _("The polyline vertices"),
 				     GOC_TYPE_POINTS,
 				     GSF_PARAM_STATIC | G_PARAM_READWRITE));
-	g_object_class_install_property (obj_klass, POLYLINE_PROP_SPLINE,
+/*	g_object_class_install_property (obj_klass, POLYLINE_PROP_SPLINE,
 		g_param_spec_boolean ("use-spline",
 				      _("Use spline"),
 				      _("Use a Bezier cubic spline as line"),
 				      FALSE,
-				      GSF_PARAM_STATIC | G_PARAM_READABLE));
+				      GSF_PARAM_STATIC | G_PARAM_READABLE));*/
 
 	item_klass->update_bounds = goc_polyline_update_bounds;
 	item_klass->distance = goc_polyline_distance;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]