diff options
author | Daniel Rentz [dr] <daniel.rentz@oracle.com> | 2011-02-28 10:08:33 +0100 |
---|---|---|
committer | Daniel Rentz [dr] <daniel.rentz@oracle.com> | 2011-02-28 10:08:33 +0100 |
commit | 24698e58787949576600a83ca7adccdc757ccbc4 (patch) | |
tree | 6d86bf940557e407e9015b627c46f83a014e6075 /sc/source/ui/view/tabvwsh8.cxx | |
parent | b2af58218250e3d39d1232dc373b428c13386473 (diff) | |
parent | ce6308e4fad2281241bf4ca78280eba29f744d43 (diff) |
dr78: rebase to DEV300_m101
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; } |