summaryrefslogtreecommitdiffstats
path: root/src/sp-ellipse.cpp
diff options
context:
space:
mode:
authorMarkus Engel <markus.engel@tum.de>2013-03-29 23:46:57 +0000
committerMarkus Engel <markus.engel@tum.de>2013-03-29 23:46:57 +0000
commit957c3e4b7909d42c5a13f1b1dd583f877fc32259 (patch)
treebd7bba5a2b55bdc882bd9c35d12897a922ba900b /src/sp-ellipse.cpp
parentReplaced calls to "pattern_new". (diff)
downloadinkscape-957c3e4b7909d42c5a13f1b1dd583f877fc32259.tar.gz
inkscape-957c3e4b7909d42c5a13f1b1dd583f877fc32259.zip
Removed function pointers from SPObject and subclasses.
Added some missing virtual pads for classes that were hidden by preprocessor macros. (bzr r11608.1.55)
Diffstat (limited to 'src/sp-ellipse.cpp')
-rw-r--r--src/sp-ellipse.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/sp-ellipse.cpp b/src/sp-ellipse.cpp
index f5c0c160c..c215e5b19 100644
--- a/src/sp-ellipse.cpp
+++ b/src/sp-ellipse.cpp
@@ -112,8 +112,8 @@ static void sp_genericellipse_class_init(SPGenericEllipseClass *klass)
ge_parent_class = (SPShapeClass*) g_type_class_ref(SP_TYPE_SHAPE);
- sp_object_class->update = sp_genericellipse_update;
- sp_object_class->write = sp_genericellipse_write;
+// sp_object_class->update = sp_genericellipse_update;
+// sp_object_class->write = sp_genericellipse_write;
//item_class->snappoints = sp_genericellipse_snappoints;
@@ -462,8 +462,8 @@ 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->write = sp_ellipse_write;
- sp_object_class->set = sp_ellipse_set;
+// sp_object_class->write = sp_ellipse_write;
+// sp_object_class->set = sp_ellipse_set;
// item_class->description = sp_ellipse_description;
}
@@ -637,8 +637,8 @@ 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->write = sp_circle_write;
- sp_object_class->set = sp_circle_set;
+// sp_object_class->write = sp_circle_write;
+// sp_object_class->set = sp_circle_set;
// item_class->description = sp_circle_description;
}
@@ -789,9 +789,9 @@ 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->write = sp_arc_write;
- sp_object_class->set = sp_arc_set;
- sp_object_class->modified = sp_arc_modified;
+// sp_object_class->write = sp_arc_write;
+// sp_object_class->set = sp_arc_set;
+// sp_object_class->modified = sp_arc_modified;
// item_class->description = sp_arc_description;
}