summaryrefslogtreecommitdiffstats
path: root/src/live_effects/lpe-pathalongpath.cpp
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2008-01-16 20:12:15 +0000
committerjohanengelen <johanengelen@users.sourceforge.net>2008-01-16 20:12:15 +0000
commitf47d8974f04de245c3eb52c549773599348b3d04 (patch)
tree215f0f698b961f2eccb2ef5c4e5b27f9b9491a98 /src/live_effects/lpe-pathalongpath.cpp
parentfix initialization of grid document properties (diff)
downloadinkscape-f47d8974f04de245c3eb52c549773599348b3d04.tar.gz
inkscape-f47d8974f04de245c3eb52c549773599348b3d04.zip
RegisteredEnum is now subclassed from RegisteredWidget<enum> instead of old RegisteredWdg
(bzr r4523)
Diffstat (limited to 'src/live_effects/lpe-pathalongpath.cpp')
-rw-r--r--src/live_effects/lpe-pathalongpath.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/live_effects/lpe-pathalongpath.cpp b/src/live_effects/lpe-pathalongpath.cpp
index ef6373274..b3d0fdd4c 100644
--- a/src/live_effects/lpe-pathalongpath.cpp
+++ b/src/live_effects/lpe-pathalongpath.cpp
@@ -179,7 +179,7 @@ LPEPathAlongPath::resetDefaults(SPItem * item)
// set the bend path to run horizontally in the middle of the bounding box of the original path
Piecewise<D2<SBasis> > pwd2;
- std::vector<Path> temppath = SVGD_to_2GeomPath( SP_OBJECT_REPR(item)->attribute("inkscape:original-d"));
+ std::vector<Geom::Path> temppath = SVGD_to_2GeomPath( SP_OBJECT_REPR(item)->attribute("inkscape:original-d"));
for (unsigned int i=0; i < temppath.size(); i++) {
pwd2.concat( temppath[i].toPwSb() );
}