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-filter.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-filter.cpp')
| -rw-r--r-- | src/sp-filter.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/sp-filter.cpp b/src/sp-filter.cpp index db6b933e7..1af450c8b 100644 --- a/src/sp-filter.cpp +++ b/src/sp-filter.cpp @@ -87,12 +87,12 @@ sp_filter_class_init(SPFilterClass *klass) filter_parent_class = (SPObjectClass*)g_type_class_peek_parent(klass); //sp_object_class->build = sp_filter_build; - sp_object_class->release = sp_filter_release; - sp_object_class->write = sp_filter_write; - sp_object_class->set = sp_filter_set; - sp_object_class->update = sp_filter_update; - sp_object_class->child_added = sp_filter_child_added; - sp_object_class->remove_child = sp_filter_remove_child; +// sp_object_class->release = sp_filter_release; +// sp_object_class->write = sp_filter_write; +// sp_object_class->set = sp_filter_set; +// sp_object_class->update = sp_filter_update; +// sp_object_class->child_added = sp_filter_child_added; +// sp_object_class->remove_child = sp_filter_remove_child; } CFilter::CFilter(SPFilter* filter) : CObject(filter) { |
