diff options
| author | johnce <johnce@users.sourceforge.net> | 2009-08-05 05:40:36 +0000 |
|---|---|---|
| committer | johnce <johnce@users.sourceforge.net> | 2009-08-05 05:40:36 +0000 |
| commit | 8b04d0db6c55e36935690d37defb6f9b68945796 (patch) | |
| tree | 3909eb7f8201b43f6a4dcfcc854eda2fbc72b17e /src/live_effects | |
| parent | Scour extension added to Makefile.am and POTFILE.in (inkscape.pot updated). (diff) | |
| download | inkscape-8b04d0db6c55e36935690d37defb6f9b68945796.tar.gz inkscape-8b04d0db6c55e36935690d37defb6f9b68945796.zip | |
SPDocument->Document
(bzr r8404)
Diffstat (limited to 'src/live_effects')
| -rw-r--r-- | src/live_effects/effect.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/live_effects/effect.h b/src/live_effects/effect.h index 6f195b176..461073c3f 100644 --- a/src/live_effects/effect.h +++ b/src/live_effects/effect.h @@ -23,7 +23,7 @@ #define LPE_CONVERSION_TOLERANCE 0.01 // FIXME: find good solution for this. -struct SPDocument; +struct Document; struct SPDesktop; struct SPItem; class SPNodeContext; @@ -56,8 +56,8 @@ enum LPEPathFlashType { class Effect { public: static Effect* New(EffectType lpenr, LivePathEffectObject *lpeobj); - static void createAndApply(const char* name, SPDocument *doc, SPItem *item); - static void createAndApply(EffectType type, SPDocument *doc, SPItem *item); + static void createAndApply(const char* name, Document *doc, SPItem *item); + static void createAndApply(EffectType type, Document *doc, SPItem *item); virtual ~Effect(); @@ -111,7 +111,7 @@ public: Glib::ustring getName(); Inkscape::XML::Node * getRepr(); - SPDocument * getSPDoc(); + Document * getSPDoc(); LivePathEffectObject * getLPEObj() {return lpeobj;}; Parameter * getParameter(const char * key); |
