X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fsp-flowregion.cpp;h=3981aa9ba4874fbd7daff7abc69055ec2ecba0ba;hb=9336a24ccde2bdbbe7d3bd069e29b2cce87cb4be;hp=95695768e8f5025c9738696006c79347db1e5e0d;hpb=f951374eef04129c6a0d213e7ab4d9ed2095ca69;p=inkscape.git diff --git a/src/sp-flowregion.cpp b/src/sp-flowregion.cpp index 95695768e..3981aa9ba 100644 --- a/src/sp-flowregion.cpp +++ b/src/sp-flowregion.cpp @@ -14,6 +14,7 @@ #include "sp-text.h" #include "sp-use.h" #include "style.h" +#include "document.h" #include "sp-flowregion.h" @@ -233,7 +234,10 @@ static Inkscape::XML::Node * sp_flowregion_write (SPObject *object, Inkscape::XML::Node *repr, guint flags) { if (flags & SP_OBJECT_WRITE_BUILD) { - if ( repr == NULL ) repr = sp_repr_new ("svg:flowRegion"); + if ( repr == NULL ) { + Inkscape::XML::Document *xml_doc = sp_document_repr_doc(SP_OBJECT_DOCUMENT(object)); + repr = xml_doc->createElement("svg:flowRegion"); + } GSList *l = NULL; for ( SPObject *child = sp_object_first_child(object) ; child != NULL; child = SP_OBJECT_NEXT(child) ) { @@ -447,7 +451,10 @@ static Inkscape::XML::Node * sp_flowregionexclude_write (SPObject *object, Inkscape::XML::Node *repr, guint flags) { if (flags & SP_OBJECT_WRITE_BUILD) { - if ( repr == NULL ) repr = sp_repr_new ("svg:flowRegionExclude"); + if ( repr == NULL ) { + Inkscape::XML::Document *xml_doc = sp_document_repr_doc(SP_OBJECT_DOCUMENT(object)); + repr = xml_doc->createElement("svg:flowRegionExclude"); + } GSList *l = NULL; for ( SPObject *child = sp_object_first_child(object) ; child != NULL; child = SP_OBJECT_NEXT(child) ) { @@ -521,7 +528,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);