diff options
author | Miklos Vajna <vmiklos@suse.cz> | 2012-06-29 16:06:11 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@suse.cz> | 2012-06-29 16:06:23 +0200 |
commit | 9628c1b52a4cba8464962d77a65fe1a559cfd42a (patch) | |
tree | 347d336c7aa6499eb5fcd6cc6be670b4bfc9dc55 /sw | |
parent | 73202f8edc074ec035255d25ff29bfd4a8d8dfd6 (diff) |
SwDoc::CopyPageDesc: sal_Bool -> bool
Change-Id: I146e4b8c1e174a20dd9524c63bcb6aa0d09849de
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/doc/docfmt.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/doc/docfmt.cxx b/sw/source/core/doc/docfmt.cxx index bbf3c76b236a..b18f21f014f7 100644 --- a/sw/source/core/doc/docfmt.cxx +++ b/sw/source/core/doc/docfmt.cxx @@ -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 |