diff options
author | Noel Grandin <noel@peralex.com> | 2014-01-17 14:08:08 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-01-20 13:13:50 +0200 |
commit | 2b015cd8adaca8345cc520eff369b5429c1bed37 (patch) | |
tree | 285844b1284a45f9a499f1085929bb28b5c0f452 /sc | |
parent | 66ff6924d50fc77e7a3e80c74a12a088a874df8b (diff) |
sal_Bool->bool
Change-Id: Ibe1a978835a3ccd3c34d289db56f12e53b42087b
Diffstat (limited to 'sc')
-rw-r--r-- | sc/inc/cellsuno.hxx | 2 | ||||
-rw-r--r-- | sc/source/ui/unoobj/cellsuno.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/cellsuno.hxx b/sc/inc/cellsuno.hxx index 4e85421dfd7b..fed134e395db 100644 --- a/sc/inc/cellsuno.hxx +++ b/sc/inc/cellsuno.hxx @@ -247,7 +247,7 @@ public: ScDocShell* GetDocShell() const { return pDocShell; } ScDocument* GetDocument() const; const ScRangeList& GetRangeList() const { return aRanges; } - void AddRange(const ScRange& rRange, const sal_Bool bMergeRanges); + void AddRange(const ScRange& rRange, const bool bMergeRanges); // arouse object created via service: void InitInsertRange(ScDocShell* pDocSh, const ScRange& rR); diff --git a/sc/source/ui/unoobj/cellsuno.cxx b/sc/source/ui/unoobj/cellsuno.cxx index d4c01cc8a262..d97b2b5e971d 100644 --- a/sc/source/ui/unoobj/cellsuno.cxx +++ b/sc/source/ui/unoobj/cellsuno.cxx @@ -1706,7 +1706,7 @@ void ScCellRangesBase::InitInsertRange(ScDocShell* pDocSh, const ScRange& rR) } } -void ScCellRangesBase::AddRange(const ScRange& rRange, const sal_Bool bMergeRanges) +void ScCellRangesBase::AddRange(const ScRange& rRange, const bool bMergeRanges) { if (bMergeRanges) aRanges.Join(rRange); |