summaryrefslogtreecommitdiffstats
path: root/src/live_effects/lpeobject.h
diff options
context:
space:
mode:
authorMarkus Engel <markus.engel@tum.de>2013-07-31 20:51:23 +0000
committerMarkus Engel <markus.engel@tum.de>2013-07-31 20:51:23 +0000
commitbeecbea1b415d5b9536f2309c4f30fc258e346f5 (patch)
treec7e2df507bb1f06e8bdf237f07c3fd4e5bc2fcce /src/live_effects/lpeobject.h
parentFixed SPObject ctor and dtor; removed singleton.h; some smaller changes. (diff)
downloadinkscape-beecbea1b415d5b9536f2309c4f30fc258e346f5.tar.gz
inkscape-beecbea1b415d5b9536f2309c4f30fc258e346f5.zip
Cleaned up a bit; fixed struct vs. class forward declarations.
(bzr r11608.1.111)
Diffstat (limited to 'src/live_effects/lpeobject.h')
-rw-r--r--src/live_effects/lpeobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/live_effects/lpeobject.h b/src/live_effects/lpeobject.h
index 28ed93f1a..534a12897 100644
--- a/src/live_effects/lpeobject.h
+++ b/src/live_effects/lpeobject.h
@@ -40,9 +40,9 @@ public:
* So one should always check whether the returned value is NULL or not */
Inkscape::LivePathEffect::Effect * get_lpe() { return lpe; };
-//private:
Inkscape::LivePathEffect::Effect *lpe; // this can be NULL in a valid LivePathEffectObject
+protected:
virtual void build(SPDocument* doc, Inkscape::XML::Node* repr);
virtual void release();