summaryrefslogtreecommitdiffstats
path: root/src/sp-flowregion.cpp
diff options
context:
space:
mode:
authorLiam P. White <inkscapebronyat-signgmaildotcom>2014-06-06 21:01:38 +0000
committerLiam P. White <inkscapebronyat-signgmaildotcom>2014-06-06 21:01:38 +0000
commit1fd57a41383419cbeddbaef27e52d55c0d02400f (patch)
tree72854a0d1dc09bec11e55b28c68ea22dcef5be1b /src/sp-flowregion.cpp
parentPut lpe-envelope-perspective.cpp in CMakeLists.txt (diff)
downloadinkscape-1fd57a41383419cbeddbaef27e52d55c0d02400f.tar.gz
inkscape-1fd57a41383419cbeddbaef27e52d55c0d02400f.zip
Clean up some unnecessary pointer usage in livarot
(bzr r13341.1.50)
Diffstat (limited to 'src/sp-flowregion.cpp')
-rw-r--r--src/sp-flowregion.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sp-flowregion.cpp b/src/sp-flowregion.cpp
index 709e9e464..37170c9e6 100644
--- a/src/sp-flowregion.cpp
+++ b/src/sp-flowregion.cpp
@@ -1,4 +1,5 @@
/*
+ * TODO: clean this up
*/
#ifdef HAVE_CONFIG_H
@@ -382,7 +383,7 @@ static void GetDest(SPObject* child,Shape **computed)
temp->LoadPathVector(curve->get_pathvector(), tr_mat, true);
Shape* n_shp=new Shape;
temp->Convert(0.25);
- temp->Fill(n_shp,0);
+ temp->Fill(*n_shp,0);
Shape* uncross=new Shape;
SPStyle* style = u_child->style;
if ( style && style->fill_rule.computed == SP_WIND_RULE_EVENODD ) {