summaryrefslogtreecommitdiffstats
path: root/src/sp-ellipse.cpp
diff options
context:
space:
mode:
authorMarkus Engel <markus.engel@tum.de>2013-03-14 11:42:39 +0000
committerMarkus Engel <markus.engel@tum.de>2013-03-14 11:42:39 +0000
commita0a8d020201e0e38a63d9aa3dce228d7d9e6fb35 (patch)
tree15eb1db63b425cb0a902cd259401ea2b556028d5 /src/sp-ellipse.cpp
parentAdded some virtual pad calls to SPObject. (diff)
downloadinkscape-a0a8d020201e0e38a63d9aa3dce228d7d9e6fb35.tar.gz
inkscape-a0a8d020201e0e38a63d9aa3dce228d7d9e6fb35.zip
Various changes.
(bzr r11608.1.48)
Diffstat (limited to 'src/sp-ellipse.cpp')
-rw-r--r--src/sp-ellipse.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sp-ellipse.cpp b/src/sp-ellipse.cpp
index 0a0e37434..f5c0c160c 100644
--- a/src/sp-ellipse.cpp
+++ b/src/sp-ellipse.cpp
@@ -461,7 +461,7 @@ static void sp_ellipse_class_init(SPEllipseClass *klass)
ellipse_parent_class = (SPGenericEllipseClass*) g_type_class_ref(SP_TYPE_GENERICELLIPSE);
- sp_object_class->build = sp_ellipse_build;
+ //sp_object_class->build = sp_ellipse_build;
sp_object_class->write = sp_ellipse_write;
sp_object_class->set = sp_ellipse_set;
@@ -636,7 +636,7 @@ sp_circle_class_init(SPCircleClass *klass)
circle_parent_class = (SPGenericEllipseClass*) g_type_class_ref(SP_TYPE_GENERICELLIPSE);
- sp_object_class->build = sp_circle_build;
+ //sp_object_class->build = sp_circle_build;
sp_object_class->write = sp_circle_write;
sp_object_class->set = sp_circle_set;
@@ -788,7 +788,7 @@ sp_arc_class_init(SPArcClass *klass)
arc_parent_class = (SPGenericEllipseClass*) g_type_class_ref(SP_TYPE_GENERICELLIPSE);
- sp_object_class->build = sp_arc_build;
+ //sp_object_class->build = sp_arc_build;
sp_object_class->write = sp_arc_write;
sp_object_class->set = sp_arc_set;
sp_object_class->modified = sp_arc_modified;