summaryrefslogtreecommitdiff
path: root/sc/source/filter/excel/xistyle.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-11-06 23:09:41 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-11-07 12:27:31 +0000
commit75871d9a8c0f22f3d5486023a56175d0d04e66d5 (patch)
tree0f08695d0a3d611c1f97c87463a3aebec7d213f2 /sc/source/filter/excel/xistyle.cxx
parentb2fe416ef61347b9e26691b745574519947cf796 (diff)
callcatcher: remove some unused methods
Diffstat (limited to 'sc/source/filter/excel/xistyle.cxx')
-rw-r--r--sc/source/filter/excel/xistyle.cxx13
1 files changed, 0 insertions, 13 deletions
diff --git a/sc/source/filter/excel/xistyle.cxx b/sc/source/filter/excel/xistyle.cxx
index 49d1b196c668..2ea78a36cd32 100644
--- a/sc/source/filter/excel/xistyle.cxx
+++ b/sc/source/filter/excel/xistyle.cxx
@@ -157,19 +157,6 @@ ColorData XclImpPalette::GetColorData( sal_uInt16 nXclIndex ) const
return GetDefColorData( nXclIndex );
}
-::com::sun::star::uno::Sequence< sal_Int32 > XclImpPalette::CreateColorSequence() const
-{
- sal_Int32 nCount = static_cast< sal_Int32 >( maColorTable.size() );
- ::com::sun::star::uno::Sequence< sal_Int32 > aSeq( nCount );
- if( nCount > 0 )
- {
- sal_Int32* pnSeqColor = aSeq.getArray();
- for( ColorDataVec::const_iterator aIt = maColorTable.begin(), aEnd = maColorTable.end(); aIt != aEnd; ++aIt, ++pnSeqColor )
- *pnSeqColor = static_cast< sal_Int32 >( *aIt );
- }
- return aSeq;
-}
-
void XclImpPalette::ReadPalette( XclImpStream& rStrm )
{
sal_uInt16 nCount;