diff options
Diffstat (limited to 'sfx2/source/appl')
-rw-r--r-- | sfx2/source/appl/linkmgr2.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sfx2/source/appl/linkmgr2.cxx b/sfx2/source/appl/linkmgr2.cxx index 4ad6a59f4f80..9564a1857208 100644 --- a/sfx2/source/appl/linkmgr2.cxx +++ b/sfx2/source/appl/linkmgr2.cxx @@ -304,9 +304,9 @@ bool LinkManager::GetDisplayNames( } void LinkManager::UpdateAllLinks( - sal_Bool bAskUpdate, - sal_Bool /*bCallErrHdl*/, - sal_Bool bUpdateGrfLinks, + bool bAskUpdate, + bool /*bCallErrHdl*/, + bool bUpdateGrfLinks, Window* pParentWin ) { // First make a copy of the array in order to update links @@ -350,7 +350,7 @@ void LinkManager::UpdateAllLinks( int nRet = QueryBox( pParentWin, WB_YES_NO | WB_DEF_YES, SfxResId( STR_QUERY_UPDATE_LINKS ).toString() ).Execute(); if( RET_YES != nRet ) return ; // nothing should be updated - bAskUpdate = sal_False; // once is enough + bAskUpdate = false; // once is enough } pLink->Update(); |