Kaydet (Commit) 9628c1b5 authored tarafından Miklos Vajna's avatar Miklos Vajna

SwDoc::CopyPageDesc: sal_Bool -> bool

Change-Id: I146e4b8c1e174a20dd9524c63bcb6aa0d09849de
üst 73202f8e
......@@ -2041,7 +2041,7 @@ void SwDoc::CopyPageDescHeaderFooterImpl( bool bCpyHeader,
void SwDoc::CopyPageDesc( const SwPageDesc& rSrcDesc, SwPageDesc& rDstDesc,
sal_Bool bCopyPoolIds )
{
sal_Bool bNotifyLayout = sal_False;
bool bNotifyLayout = false;
SwRootFrm* pTmpRoot = GetCurrentLayout();//swmod 080219
rDstDesc.SetLandscape( rSrcDesc.GetLandscape() );
......@@ -2049,7 +2049,7 @@ void SwDoc::CopyPageDesc( const SwPageDesc& rSrcDesc, SwPageDesc& rDstDesc,
if( rDstDesc.ReadUseOn() != rSrcDesc.ReadUseOn() )
{
rDstDesc.WriteUseOn( rSrcDesc.ReadUseOn() );
bNotifyLayout = sal_True;
bNotifyLayout = true;
}
if( bCopyPoolIds )
......@@ -2072,7 +2072,7 @@ void SwDoc::CopyPageDesc( const SwPageDesc& rSrcDesc, SwPageDesc& rDstDesc,
CopyPageDesc( *rSrcDesc.GetFollow(), *pFollow );
}
rDstDesc.SetFollow( pFollow );
bNotifyLayout = sal_True;
bNotifyLayout = true;
}
// the header and footer attributes are copied seperately
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment