diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-14 14:46:22 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-18 10:07:53 +0200 |
commit | 71498bedcc66409bab636c29dc6a369093b64073 (patch) | |
tree | 64463643351938f48381a727704360f8fb0b7755 /sc/source/ui/dbgui | |
parent | fd1bee287f12c4ee425fa1ee4582826ce3eb7fe5 (diff) |
sal_Bool->bool
Change-Id: Ib3d1e2903bacad34fe381eb3ba644ddd48762abc
Diffstat (limited to 'sc/source/ui/dbgui')
-rw-r--r-- | sc/source/ui/dbgui/consdlg.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/dbgui/consdlg.cxx b/sc/source/ui/dbgui/consdlg.cxx index ded769574c76..79ea06e4ed5a 100644 --- a/sc/source/ui/dbgui/consdlg.cxx +++ b/sc/source/ui/dbgui/consdlg.cxx @@ -290,18 +290,18 @@ void ScConsolidateDlg::SetActive() void ScConsolidateDlg::Deactivate() { - bDlgLostFocus = sal_True; + bDlgLostFocus = true; } -sal_Bool ScConsolidateDlg::VerifyEdit( formula::RefEdit* pEd ) +bool ScConsolidateDlg::VerifyEdit( formula::RefEdit* pEd ) { if ( !pRangeUtil || !pDoc || !pViewData || ((pEd != pEdDataArea) && (pEd != pEdDestArea)) ) return false; SCTAB nTab = pViewData->GetTabNo(); - sal_Bool bEditOk = false; + bool bEditOk = false; OUString theCompleteStr; const formula::FormulaGrammar::AddressConvention eConv = pDoc->GetAddressConvention(); |