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-text.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 'src/sp-text.cpp')
| -rw-r--r-- | src/sp-text.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/sp-text.cpp b/src/sp-text.cpp index 0f3ea87dd..fe7138cbe 100644 --- a/src/sp-text.cpp +++ b/src/sp-text.cpp @@ -114,14 +114,14 @@ sp_text_class_init (SPTextClass *classname) text_parent_class = (SPItemClass*)g_type_class_ref (SP_TYPE_ITEM); - sp_object_class->release = sp_text_release; - //sp_object_class->build = sp_text_build; - sp_object_class->set = sp_text_set; - sp_object_class->child_added = sp_text_child_added; - sp_object_class->remove_child = sp_text_remove_child; - sp_object_class->update = sp_text_update; - sp_object_class->modified = sp_text_modified; - sp_object_class->write = sp_text_write; +// sp_object_class->release = sp_text_release; +// //sp_object_class->build = sp_text_build; +// sp_object_class->set = sp_text_set; +// sp_object_class->child_added = sp_text_child_added; +// sp_object_class->remove_child = sp_text_remove_child; +// sp_object_class->update = sp_text_update; +// sp_object_class->modified = sp_text_modified; +// sp_object_class->write = sp_text_write; // item_class->bbox = sp_text_bbox; // item_class->show = sp_text_show; |
