summaryrefslogtreecommitdiff
path: root/sc/source/ui/vba/vbarange.cxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@suse.com>2012-02-03 23:35:49 -0500
committerKohei Yoshida <kohei.yoshida@suse.com>2012-02-04 00:25:52 -0500
commit35692c7370bb35eb66f5485f6033af5de812ad1c (patch)
tree359b1f4c2c313103fed13552f118b805da2e5e13 /sc/source/ui/vba/vbarange.cxx
parent6fae316672b146937a52eeb6447b08177c26c43b (diff)
ScOutlineCollection and its friends now free of ScSortedCollection.
But it's apparently broken at the moment. I need to fix this...
Diffstat (limited to 'sc/source/ui/vba/vbarange.cxx')
-rw-r--r--sc/source/ui/vba/vbarange.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/vba/vbarange.cxx b/sc/source/ui/vba/vbarange.cxx
index 114ac2e63c5a..6ae2d0820d21 100644
--- a/sc/source/ui/vba/vbarange.cxx
+++ b/sc/source/ui/vba/vbarange.cxx
@@ -5233,7 +5233,7 @@ uno::Any ScVbaRange::getShowDetail() throw ( css::uno::RuntimeException)
if( pOutlineArray )
{
SCCOLROW nPos = bColumn ? (SCCOLROW)(thisAddress.EndColumn-1):(SCCOLROW)(thisAddress.EndRow-1);
- ScOutlineEntry* pEntry = pOutlineArray->GetEntryByPos( 0, nPos );
+ const ScOutlineEntry* pEntry = pOutlineArray->GetEntryByPos( 0, nPos );
if( pEntry )
{
bShowDetail = !pEntry->IsHidden();