summaryrefslogtreecommitdiff
path: root/sc/source/ui/view/dbfunc3.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-18 13:54:55 +0200
committerNoel Grandin <noel@peralex.com>2014-02-19 13:05:00 +0200
commite23b79e4fbac856a7999ee17e6afa34201332840 (patch)
tree6a86576e808b48bb966c7c8fc0eee5e94f457b3c /sc/source/ui/view/dbfunc3.cxx
parent9f516df4f523ad39a18aa4ede49028484044597f (diff)
sal_Bool->bool, and remove unused parameters
Change-Id: I55a07cbcb7f388143f115d35b20daea96d1bed5d
Diffstat (limited to 'sc/source/ui/view/dbfunc3.cxx')
-rw-r--r--sc/source/ui/view/dbfunc3.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sc/source/ui/view/dbfunc3.cxx b/sc/source/ui/view/dbfunc3.cxx
index 50cfc2e4d32a..b92341152351 100644
--- a/sc/source/ui/view/dbfunc3.cxx
+++ b/sc/source/ui/view/dbfunc3.cxx
@@ -190,7 +190,7 @@ void ScDBFunc::RemoveAllOutlines( bool bRecord )
ScDocShell* pDocSh = GetViewData()->GetDocShell();
ScOutlineDocFunc aFunc(*pDocSh);
- bool bOk = aFunc.RemoveAllOutlines( nTab, bRecord, false );
+ bool bOk = aFunc.RemoveAllOutlines( nTab, bRecord );
if (bOk)
UpdateScrollBars();
@@ -211,7 +211,7 @@ void ScDBFunc::AutoOutline( bool bRecord )
ScDocShell* pDocSh = GetViewData()->GetDocShell();
ScOutlineDocFunc aFunc(*pDocSh);
- aFunc.AutoOutline( aRange, bRecord, false );
+ aFunc.AutoOutline( aRange, bRecord );
}
// Outline-Ebene auswaehlen
@@ -222,7 +222,7 @@ void ScDBFunc::SelectLevel( bool bColumns, sal_uInt16 nLevel, bool bRecord, bool
ScDocShell* pDocSh = GetViewData()->GetDocShell();
ScOutlineDocFunc aFunc(*pDocSh);
- sal_Bool bOk = aFunc.SelectLevel( nTab, bColumns, nLevel, bRecord, bPaint, false );
+ bool bOk = aFunc.SelectLevel( nTab, bColumns, nLevel, bRecord, bPaint );
if (bOk)
UpdateScrollBars();
@@ -236,7 +236,7 @@ void ScDBFunc::ShowOutline( bool bColumns, sal_uInt16 nLevel, sal_uInt16 nEntry,
ScDocShell* pDocSh = GetViewData()->GetDocShell();
ScOutlineDocFunc aFunc(*pDocSh);
- sal_Bool bOk = aFunc.ShowOutline( nTab, bColumns, nLevel, nEntry, bRecord, bPaint, false );
+ bool bOk = aFunc.ShowOutline( nTab, bColumns, nLevel, nEntry, bRecord, bPaint );
if ( bOk && bPaint )
UpdateScrollBars();
@@ -250,7 +250,7 @@ void ScDBFunc::HideOutline( bool bColumns, sal_uInt16 nLevel, sal_uInt16 nEntry,
ScDocShell* pDocSh = GetViewData()->GetDocShell();
ScOutlineDocFunc aFunc(*pDocSh);
- sal_Bool bOk = aFunc.HideOutline( nTab, bColumns, nLevel, nEntry, bRecord, bPaint, false );
+ bool bOk = aFunc.HideOutline( nTab, bColumns, nLevel, nEntry, bRecord, bPaint );
if ( bOk && bPaint )
UpdateScrollBars();
@@ -356,7 +356,7 @@ void ScDBFunc::HideMarkedOutlines( bool bRecord )
{
ScDocShell* pDocSh = GetViewData()->GetDocShell();
ScOutlineDocFunc aFunc(*pDocSh);
- sal_Bool bDone = aFunc.HideMarkedOutlines( aRange, bRecord, false );
+ bool bDone = aFunc.HideMarkedOutlines( aRange, bRecord );
if (bDone)
UpdateScrollBars();
}