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/color-profile.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/color-profile.cpp')
| -rw-r--r-- | src/color-profile.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/color-profile.cpp b/src/color-profile.cpp index ac341dfe5..9be2ea335 100644 --- a/src/color-profile.cpp +++ b/src/color-profile.cpp @@ -220,10 +220,10 @@ void ColorProfile::classInit( ColorProfileClass *klass ) cprof_parent_class = static_cast<SPObjectClass*>(g_type_class_ref(SP_TYPE_OBJECT)); - sp_object_class->release = ColorProfile::release; - //sp_object_class->build = ColorProfile::build; - sp_object_class->set = ColorProfile::set; - sp_object_class->write = ColorProfile::write; +// sp_object_class->release = ColorProfile::release; +// //sp_object_class->build = ColorProfile::build; +// sp_object_class->set = ColorProfile::set; +// sp_object_class->write = ColorProfile::write; } CColorProfile::CColorProfile(ColorProfile* cp) : CObject(cp) { |
