summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2008-04-13 21:15:30 +0000
committerjohanengelen <johanengelen@users.sourceforge.net>2008-04-13 21:15:30 +0000
commit41ec28842c1da0816cc06d276056f2e48d95bd2c (patch)
treef990bbeaedf1d22fe432f0102856145930da90db /src
parentC++-ify initialization of Parameter and ScalarParam classes (diff)
downloadinkscape-41ec28842c1da0816cc06d276056f2e48d95bd2c.tar.gz
inkscape-41ec28842c1da0816cc06d276056f2e48d95bd2c.zip
C++-ify initialization of Effect class
(bzr r5431)
Diffstat (limited to 'src')
-rw-r--r--src/live_effects/effect.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/live_effects/effect.cpp b/src/live_effects/effect.cpp
index 22fd14510..36148ccd0 100644
--- a/src/live_effects/effect.cpp
+++ b/src/live_effects/effect.cpp
@@ -127,10 +127,10 @@ Effect::New(EffectType lpenr, LivePathEffectObject *lpeobj)
}
Effect::Effect(LivePathEffectObject *lpeobject)
- : concatenate_before_pwd2(false)
+ : oncanvasedit_it(0),
+ lpeobj(lpeobject),
+ concatenate_before_pwd2(false)
{
- lpeobj = lpeobject;
- oncanvasedit_it = 0;
}
Effect::~Effect()