diff options
| author | MenTaLguY <mental@rydia.net> | 2006-05-09 03:52:58 +0000 |
|---|---|---|
| committer | mental <mental@users.sourceforge.net> | 2006-05-09 03:52:58 +0000 |
| commit | 48e6b0819d64e02bd43c199c9afa12f26a485323 (patch) | |
| tree | 9e7ef9cdd55a75cf222d513f91317d87e02d090f /src/sp-flowregion.cpp | |
| parent | partial GTKmmfication and HIGification by Jonathon Jongsma (diff) | |
| download | inkscape-48e6b0819d64e02bd43c199c9afa12f26a485323.tar.gz inkscape-48e6b0819d64e02bd43c199c9afa12f26a485323.zip | |
eliminate direct accesses to SPCurve::bpath
(bzr r787)
Diffstat (limited to 'src/sp-flowregion.cpp')
| -rw-r--r-- | src/sp-flowregion.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp-flowregion.cpp b/src/sp-flowregion.cpp index 95695768e..51bc4c511 100644 --- a/src/sp-flowregion.cpp +++ b/src/sp-flowregion.cpp @@ -521,7 +521,7 @@ static void GetDest(SPObject* child,Shape **computed,NR::Matrix itr_mat) Path* temp=new Path; NR::Matrix tr_mat=sp_item_i2root_affine (SP_ITEM(u_child)); tr_mat=itr_mat*tr_mat; - temp->LoadArtBPath(curve->bpath,tr_mat,true); + temp->LoadArtBPath(SP_CURVE_BPATH(curve),tr_mat,true); Shape* n_shp=new Shape; temp->Convert(0.25); temp->Fill(n_shp,0); |
