summaryrefslogtreecommitdiff
path: root/cui/source/dialogs/linkdlg.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-14 11:18:53 +0200
committerNoel Grandin <noel@peralex.com>2014-03-18 11:26:05 +0200
commite67d675d1e6410a95c3ea0765c12d96c3a1db512 (patch)
tree538f4802bf0fbb97e49b241e53ea77f437f16ce1 /cui/source/dialogs/linkdlg.cxx
parent4f9ce93ecb965652b79ffa569700e91e47912ba2 (diff)
sfx2: sal_Bool->bool
Change-Id: I01a33e255b0dd2a0045f6eed52e6b31305750599
Diffstat (limited to 'cui/source/dialogs/linkdlg.cxx')
-rw-r--r--cui/source/dialogs/linkdlg.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/dialogs/linkdlg.cxx b/cui/source/dialogs/linkdlg.cxx
index a1faaf8a1f82..a529574c7c29 100644
--- a/cui/source/dialogs/linkdlg.cxx
+++ b/cui/source/dialogs/linkdlg.cxx
@@ -296,9 +296,9 @@ IMPL_LINK_NOARG(SvBaseLinksDlg, UpdateNowClickHdl)
for( size_t i = 0; i < pLinkMgr->GetLinks().size(); ++i )
if( &xLink == *pLinkMgr->GetLinks()[ i ] )
{
- xLink->SetUseCache( sal_False );
+ xLink->SetUseCache( false );
SetType( *xLink, aPosArr[ n ], xLink->GetUpdateMode() );
- xLink->SetUseCache( sal_True );
+ xLink->SetUseCache( true );
break;
}
}