diff options
author | Kohei Yoshida <kyoshida@novell.com> | 2011-03-10 16:55:21 -0500 |
---|---|---|
committer | Kohei Yoshida <kyoshida@novell.com> | 2011-03-10 20:21:13 -0500 |
commit | 12343c15568dcc2c9209d8ca41fda2263122448f (patch) | |
tree | 3212a89c6cd8ea2e0aee7103aa9669bbb8a6f307 /sc/source/ui/view/tabvwsh8.cxx | |
parent | 99745dbcbb25b61437914c9782475d0b67a4b0bd (diff) | |
parent | ce6308e4fad2281241bf4ca78280eba29f744d43 (diff) |
Merge commit 'ooo/DEV300_m101' into integration/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 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; } |