diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-24 15:42:28 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-25 14:32:56 +0200 |
commit | 436cd900956b5fd0b6583954c002f8c28ca32698 (patch) | |
tree | 00bf0fb7c6daa0041670ce5209e5912780520a66 /sc/source/ui/navipi/content.cxx | |
parent | c849d750eb751d3f2b99d23cca1c8c08672ff379 (diff) |
svtools: sal_Bool->bool
Change-Id: Ifd3e643dbc6755839ad4af73ae141fd115ddb4f4
Diffstat (limited to 'sc/source/ui/navipi/content.cxx')
-rw-r--r-- | sc/source/ui/navipi/content.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/source/ui/navipi/content.cxx b/sc/source/ui/navipi/content.cxx index 08e19e38b264..095c1a6d795c 100644 --- a/sc/source/ui/navipi/content.cxx +++ b/sc/source/ui/navipi/content.cxx @@ -730,12 +730,12 @@ void ScContentTree::ObjectFresh( sal_uInt16 nType, SvTreeListEntry* pEntry ) return; // anderes Dokument angezeigt if(nType ==SC_CONTENT_GRAPHIC||nType ==SC_CONTENT_OLEOBJECT||nType ==SC_CONTENT_DRAWING) { - SetUpdateMode(sal_False); + SetUpdateMode(false); ClearType( nType ); GetDrawNames( nType/*, nId*/ ); if( !pEntry ) ApplySettings(); - SetUpdateMode(sal_True); + SetUpdateMode(true); if( pEntry ) { SvTreeListEntry* pParent = pRootNodes[nType]; @@ -756,7 +756,7 @@ void ScContentTree::ObjectFresh( sal_uInt16 nType, SvTreeListEntry* pEntry ) if( pOldEntry ) { Expand(pParent); - Select( pOldEntry,sal_True); + Select( pOldEntry, true); } } } @@ -804,7 +804,7 @@ void ScContentTree::Refresh( sal_uInt16 nType ) GetLinkNames(); ApplySettings(); - SetUpdateMode(sal_True); + SetUpdateMode(true); } void ScContentTree::GetTableNames() @@ -1630,7 +1630,7 @@ void ScContentTree::ApplySettings() if( pRootNodes[ nEntry ] ) { // expand - sal_Bool bExp = pSettings->IsExpanded( nEntry ); + bool bExp = pSettings->IsExpanded( nEntry ); if( bExp != IsExpanded( pRootNodes[ nEntry ] ) ) { if( bExp ) |