diff options
Diffstat (limited to 'sc/source/ui/view/tabvwsh8.cxx')
-rw-r--r-- | sc/source/ui/view/tabvwsh8.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/view/tabvwsh8.cxx b/sc/source/ui/view/tabvwsh8.cxx index ec9a30f70e31..75ce2b1d6832 100644 --- a/sc/source/ui/view/tabvwsh8.cxx +++ b/sc/source/ui/view/tabvwsh8.cxx @@ -61,9 +61,9 @@ void ScTabViewShell::SetDefaultFrameLine( const SvxBorderLine* pLine ) //------------------------------------------------------------------ -BOOL ScTabViewShell::HasSelection( BOOL bText ) const +sal_Bool ScTabViewShell::HasSelection( sal_Bool bText ) const { - BOOL bHas = FALSE; + sal_Bool bHas = false; ScViewData* pData = (ScViewData*)GetViewData(); // const weggecasted if ( bText ) { @@ -82,7 +82,7 @@ BOOL ScTabViewShell::HasSelection( BOOL bText ) const if ( eMarkType == SC_MARK_SIMPLE ) bHas = ( aRange.aStart != aRange.aEnd ); // more than 1 cell else - bHas = TRUE; // multiple selection or filtered + bHas = sal_True; // multiple selection or filtered } return bHas; } |