diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2011-08-25 11:33:20 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2011-08-25 12:29:28 +0200 |
commit | 7dbc196e1de895959fe3a2b9c4cdc89069f263e9 (patch) | |
tree | d6f42f43149505528a98ee820968d6eaec4f81e4 /sc/source/ui/docshell/editable.cxx | |
parent | bb00e570440b4f80013074a5f71f5caaf2b44000 (diff) |
sal_Bool -> bool in ScTable
Diffstat (limited to 'sc/source/ui/docshell/editable.cxx')
-rw-r--r-- | sc/source/ui/docshell/editable.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/docshell/editable.cxx b/sc/source/ui/docshell/editable.cxx index ca4492b2ce15..b34cdab1d2b1 100644 --- a/sc/source/ui/docshell/editable.cxx +++ b/sc/source/ui/docshell/editable.cxx @@ -89,7 +89,7 @@ void ScEditableTester::TestBlock( ScDocument* pDoc, SCTAB nTab, { if ( bIsEditable || bOnlyMatrix ) { - sal_Bool bThisMatrix; + bool bThisMatrix; if ( !pDoc->IsBlockEditable( nTab, nStartCol, nStartRow, nEndCol, nEndRow, &bThisMatrix ) ) { bIsEditable = false; @@ -125,7 +125,7 @@ void ScEditableTester::TestSelection( ScDocument* pDoc, const ScMarkData& rMark { if ( bIsEditable || bOnlyMatrix ) { - sal_Bool bThisMatrix; + bool bThisMatrix; if ( !pDoc->IsSelectionEditable( rMark, &bThisMatrix ) ) { bIsEditable = false; @@ -139,7 +139,7 @@ void ScEditableTester::TestView( ScViewFunc* pView ) { if ( bIsEditable || bOnlyMatrix ) { - sal_Bool bThisMatrix; + bool bThisMatrix; if ( !pView->SelectionEditable( &bThisMatrix ) ) { bIsEditable = false; |