sw: include header/footer type in layout dump
Change-Id: I27318fbaf71874d34671c0da820caee6cdb22ace
This commit is contained in:
parent
278000a28b
commit
fe0985c232
2 changed files with 9 additions and 2 deletions
|
@ -217,7 +217,7 @@ void SwDoc::CopyMasterHeader(const SwPageDesc &rChged, const SwFmtHeader &rHead,
|
|||
}
|
||||
else if( (*aRCnt.GetCntntIdx()) == (*aCnt.GetCntntIdx()) )
|
||||
{
|
||||
SwFrmFmt *pFmt = new SwFrmFmt( GetAttrPool(), "Header",
|
||||
SwFrmFmt *pFmt = new SwFrmFmt( GetAttrPool(), (bLeft ? "Left header" : "First header"),
|
||||
GetDfltFrmFmt() );
|
||||
::lcl_DescSetAttr( *pRight, *pFmt, sal_False );
|
||||
// The section which the right header attribute is pointing
|
||||
|
@ -272,7 +272,7 @@ void SwDoc::CopyMasterFooter(const SwPageDesc &rChged, const SwFmtFooter &rFoot,
|
|||
}
|
||||
else if( (*aRCnt.GetCntntIdx()) == (*aLCnt.GetCntntIdx()) )
|
||||
{
|
||||
SwFrmFmt *pFmt = new SwFrmFmt( GetAttrPool(), "Footer",
|
||||
SwFrmFmt *pFmt = new SwFrmFmt( GetAttrPool(), (bLeft ? "Left footer" : "First footer"),
|
||||
GetDfltFrmFmt() );
|
||||
::lcl_DescSetAttr( *pRight, *pFmt, sal_False );
|
||||
// The section to which the right footer attribute is pointing
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
#include "sectfrm.hxx"
|
||||
#include "tabfrm.hxx"
|
||||
#include "txtfrm.hxx"
|
||||
#include "hffrm.hxx"
|
||||
#include "porlin.hxx"
|
||||
#include "porlay.hxx"
|
||||
#include "portxt.hxx"
|
||||
|
@ -367,6 +368,12 @@ void SwFrm::dumpAsXmlAttributes( xmlTextWriterPtr writer )
|
|||
SwTxtNode *pTxtNode = pTxtFrm->GetTxtNode();
|
||||
xmlTextWriterWriteFormatAttribute( writer, BAD_CAST( "txtNodeIndex" ), "%lu", pTxtNode->GetIndex() );
|
||||
}
|
||||
if (IsHeaderFrm())
|
||||
{
|
||||
SwHeaderFrm *pHeaderFrm = (SwHeaderFrm*)this;
|
||||
rtl::OUString aFmtName = pHeaderFrm->GetFmt()->GetName();
|
||||
xmlTextWriterWriteFormatAttribute( writer, BAD_CAST( "fmtName" ), "%s", BAD_CAST(rtl::OUStringToOString(aFmtName, RTL_TEXTENCODING_UTF8).getStr()));
|
||||
}
|
||||
}
|
||||
|
||||
void SwFrm::dumpChildrenAsXml( xmlTextWriterPtr writer )
|
||||
|
|
Loading…
Reference in a new issue