summaryrefslogtreecommitdiffstats
path: root/src/sp-object.h
diff options
context:
space:
mode:
authorMarkus Engel <markus.engel@tum.de>2013-07-31 19:11:20 +0000
committerMarkus Engel <markus.engel@tum.de>2013-07-31 19:11:20 +0000
commit989abbac025a8b3349748d19a613a08586c5fdcd (patch)
tree157b5f656c6344784aea3c498fa60199bd7d2958 /src/sp-object.h
parentFurther refactoring of EventContexts. (diff)
downloadinkscape-989abbac025a8b3349748d19a613a08586c5fdcd.tar.gz
inkscape-989abbac025a8b3349748d19a613a08586c5fdcd.zip
Fixed SPObject ctor and dtor; removed singleton.h; some smaller changes.
(bzr r11608.1.110)
Diffstat (limited to 'src/sp-object.h')
-rw-r--r--src/sp-object.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/sp-object.h b/src/sp-object.h
index c9e7bbace..449049611 100644
--- a/src/sp-object.h
+++ b/src/sp-object.h
@@ -822,7 +822,7 @@ public:
friend class SPObjectImpl;
-public:
+protected:
virtual void build(SPDocument* doc, Inkscape::XML::Node* repr);
virtual void release();
@@ -833,12 +833,13 @@ public:
virtual void set(unsigned int key, const gchar* value);
- virtual void read_content();
-
virtual void update(SPCtx* ctx, unsigned int flags);
virtual void modified(unsigned int flags);
virtual Inkscape::XML::Node* write(Inkscape::XML::Document* doc, Inkscape::XML::Node* repr, guint flags);
+
+public:
+ virtual void read_content();
};