diff options
| author | Markus Engel <markus.engel@tum.de> | 2013-03-29 23:46:57 +0000 |
|---|---|---|
| committer | Markus Engel <markus.engel@tum.de> | 2013-03-29 23:46:57 +0000 |
| commit | 957c3e4b7909d42c5a13f1b1dd583f877fc32259 (patch) | |
| tree | bd7bba5a2b55bdc882bd9c35d12897a922ba900b /src/sp-tspan.cpp | |
| parent | Replaced calls to "pattern_new". (diff) | |
| download | inkscape-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 '')
| -rw-r--r-- | src/sp-tspan.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/sp-tspan.cpp b/src/sp-tspan.cpp index d79177135..3950ed863 100644 --- a/src/sp-tspan.cpp +++ b/src/sp-tspan.cpp @@ -99,11 +99,11 @@ sp_tspan_class_init(SPTSpanClass *classname) tspan_parent_class = (SPItemClass*)g_type_class_ref(SP_TYPE_ITEM); //sp_object_class->build = sp_tspan_build; - sp_object_class->release = sp_tspan_release; - sp_object_class->set = sp_tspan_set; - sp_object_class->update = sp_tspan_update; - sp_object_class->modified = sp_tspan_modified; - sp_object_class->write = sp_tspan_write; +// sp_object_class->release = sp_tspan_release; +// sp_object_class->set = sp_tspan_set; +// sp_object_class->update = sp_tspan_update; +// sp_object_class->modified = sp_tspan_modified; +// sp_object_class->write = sp_tspan_write; // item_class->bbox = sp_tspan_bbox; // item_class->description = sp_tspan_description; @@ -396,11 +396,11 @@ static void sp_textpath_class_init(SPTextPathClass *classname) gobject_class->finalize = sp_textpath_finalize; //sp_object_class->build = sp_textpath_build; - sp_object_class->release = sp_textpath_release; - sp_object_class->set = sp_textpath_set; - sp_object_class->update = sp_textpath_update; - sp_object_class->modified = sp_textpath_modified; - sp_object_class->write = sp_textpath_write; +// sp_object_class->release = sp_textpath_release; +// sp_object_class->set = sp_textpath_set; +// sp_object_class->update = sp_textpath_update; +// sp_object_class->modified = sp_textpath_modified; +// sp_object_class->write = sp_textpath_write; } |
