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 b3612fa0c6f2..298dbe787f0e 100644 --- a/sc/source/ui/view/tabvwsh8.cxx +++ b/sc/source/ui/view/tabvwsh8.cxx @@ -60,9 +60,9 @@ void ScTabViewShell::SetDefaultFrameLine( const SvxBorderLine* pLine ) //------------------------------------------------------------------ -BOOL __EXPORT ScTabViewShell::HasSelection( BOOL bText ) const +sal_Bool __EXPORT ScTabViewShell::HasSelection( sal_Bool bText ) const { - BOOL bHas = FALSE; + sal_Bool bHas = sal_False; ScViewData* pData = (ScViewData*)GetViewData(); // const weggecasted if ( bText ) { @@ -81,7 +81,7 @@ BOOL __EXPORT 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; } |