diff options
| author | Liam P. White <inkscapebronyat-signgmaildotcom> | 2014-04-02 00:40:15 +0000 |
|---|---|---|
| committer | Liam P. White <inkscapebronyat-signgmaildotcom> | 2014-04-02 00:40:15 +0000 |
| commit | f3e0966f95dc4284b1fd191fb4c187c92c24aeed (patch) | |
| tree | 7c72531904ecce784c011cdc47d87e5c2209fdec /src/live_effects/effect.cpp | |
| parent | Fix bug 1219324 (diff) | |
| download | inkscape-f3e0966f95dc4284b1fd191fb4c187c92c24aeed.tar.gz inkscape-f3e0966f95dc4284b1fd191fb4c187c92c24aeed.zip | |
Fix some stuff
(bzr r13090.1.41)
Diffstat (limited to 'src/live_effects/effect.cpp')
| -rw-r--r-- | src/live_effects/effect.cpp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/live_effects/effect.cpp b/src/live_effects/effect.cpp index 337fe631f..8bf210270 100644 --- a/src/live_effects/effect.cpp +++ b/src/live_effects/effect.cpp @@ -5,7 +5,7 @@ * Released under GNU GPL, read the file 'COPYING' for more information */ -#define LPE_ENABLE_TEST_EFFECTS //uncomment for toy effects +//#define LPE_ENABLE_TEST_EFFECTS //uncomment for toy effects #ifdef HAVE_CONFIG_H # include "config.h" @@ -365,6 +365,14 @@ Effect::doBeforeEffect (SPLPEItem const*/*lpeitem*/) //Do nothing for simple effects } +void Effect::doAfterEffect (SPLPEItem const* lpeitem) +{ +} + +void Effect::doOnRemove (SPLPEItem const* lpeitem) +{ +} + /** * Effects can have a parameter path set before they are applied by accepting a nonzero number of * mouse clicks. This method activates the pen context, which waits for the specified number of |
