diff options
| author | Liam P. White <inkscapebronyat-signgmaildotcom> | 2014-06-06 21:01:38 +0000 |
|---|---|---|
| committer | Liam P. White <inkscapebronyat-signgmaildotcom> | 2014-06-06 21:01:38 +0000 |
| commit | 1fd57a41383419cbeddbaef27e52d55c0d02400f (patch) | |
| tree | 72854a0d1dc09bec11e55b28c68ea22dcef5be1b /src/sp-flowregion.cpp | |
| parent | Put lpe-envelope-perspective.cpp in CMakeLists.txt (diff) | |
| download | inkscape-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.cpp | 3 |
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 ) { |
