diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-10 12:55:11 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-10 14:44:55 +0200 |
commit | f40c11f11e0c241c5437709d302407a2fe61e2f9 (patch) | |
tree | fc652afe6ed93f83e7f29e32c538b7c18b6e304d | |
parent | 698de0864f3a6df9d6ac2289029b56ae42a1d19c (diff) |
sal_Bool->bool
Change-Id: I4fb9f453c5e0069ec12076547c95a6bbe441a2e2
-rw-r--r-- | sc/inc/docuno.hxx | 4 | ||||
-rw-r--r-- | sc/source/ui/unoobj/docuno.cxx | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sc/inc/docuno.hxx b/sc/inc/docuno.hxx index e6f53f7f3314..ff193cda24ea 100644 --- a/sc/inc/docuno.hxx +++ b/sc/inc/docuno.hxx @@ -130,7 +130,7 @@ public: void UpdateAllRowHeights(); void BeforeXMLLoading(); - void AfterXMLLoading(sal_Bool bRet); + void AfterXMLLoading(bool bRet); ScSheetSaveData* GetSheetSaveData(); void RepaintRange( const ScRange& rRange ); @@ -842,7 +842,7 @@ private: ScDocShell* pDocShell; SCTAB nTab; - sal_Bool GetScenarioIndex_Impl( const OUString& rName, SCTAB& rIndex ); + bool GetScenarioIndex_Impl( const OUString& rName, SCTAB& rIndex ); ScTableSheetObj* GetObjectByIndex_Impl(sal_Int32 nIndex); ScTableSheetObj* GetObjectByName_Impl(const OUString& aName); diff --git a/sc/source/ui/unoobj/docuno.cxx b/sc/source/ui/unoobj/docuno.cxx index 89cb922f7dc2..e91fd9ef7260 100644 --- a/sc/source/ui/unoobj/docuno.cxx +++ b/sc/source/ui/unoobj/docuno.cxx @@ -424,7 +424,7 @@ void ScModelObj::BeforeXMLLoading() pDocShell->BeforeXMLLoading(); } -void ScModelObj::AfterXMLLoading(sal_Bool bRet) +void ScModelObj::AfterXMLLoading(bool bRet) { if (pDocShell) pDocShell->AfterXMLLoading(bRet); @@ -3670,7 +3670,7 @@ void ScScenariosObj::Notify( SfxBroadcaster&, const SfxHint& rHint ) // XScenarios -sal_Bool ScScenariosObj::GetScenarioIndex_Impl( const OUString& rName, SCTAB& rIndex ) +bool ScScenariosObj::GetScenarioIndex_Impl( const OUString& rName, SCTAB& rIndex ) { //! Case-insensitiv ???? @@ -3684,7 +3684,7 @@ sal_Bool ScScenariosObj::GetScenarioIndex_Impl( const OUString& rName, SCTAB& rI if (aTabName.equals(rName)) { rIndex = i; - return sal_True; + return true; } } |