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-line.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-line.cpp')
| -rw-r--r-- | src/sp-line.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sp-line.cpp b/src/sp-line.cpp index b172d24a9..fa45ab571 100644 --- a/src/sp-line.cpp +++ b/src/sp-line.cpp @@ -54,15 +54,15 @@ void SPLineClass::sp_line_class_init(SPLineClass *klass) SPObjectClass *sp_object_class = (SPObjectClass *) klass; //sp_object_class->build = SPLine::build; - sp_object_class->set = SPLine::set; - sp_object_class->write = SPLine::write; +// sp_object_class->set = SPLine::set; +// sp_object_class->write = SPLine::write; SPItemClass *item_class = (SPItemClass *) klass; // item_class->description = SPLine::getDescription; // item_class->set_transform = SPLine::setTransform; // item_class->convert_to_guides = SPLine::convertToGuides; - sp_object_class->update = SPLine::update; +// sp_object_class->update = SPLine::update; SPShapeClass *shape_class = (SPShapeClass *) klass; //shape_class->set_shape = SPLine::setShape; |
