summaryrefslogtreecommitdiff
path: root/xmloff/source/chart/SchXMLExport.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/chart/SchXMLExport.cxx')
-rw-r--r--xmloff/source/chart/SchXMLExport.cxx28
1 files changed, 0 insertions, 28 deletions
diff --git a/xmloff/source/chart/SchXMLExport.cxx b/xmloff/source/chart/SchXMLExport.cxx
index 7d84fc53e48f..f412ab05c7a9 100644
--- a/xmloff/source/chart/SchXMLExport.cxx
+++ b/xmloff/source/chart/SchXMLExport.cxx
@@ -3533,27 +3533,6 @@ void SchXMLExportHelper_Impl::exportDataPoints(
}
}
-
-void SchXMLExportHelper_Impl::getCellAddress( sal_Int32 nCol, sal_Int32 nRow )
-{
- msStringBuffer.append( (sal_Unicode)'.' );
- if( nCol < 26 )
- msStringBuffer.append( (sal_Unicode)('A' + nCol) );
- else if( nCol < 702 )
- {
- msStringBuffer.append( (sal_Unicode)('A' + nCol / 26 - 1 ));
- msStringBuffer.append( (sal_Unicode)('A' + nCol % 26) );
- }
- else
- {
- msStringBuffer.append( (sal_Unicode)('A' + nCol / 702 - 1 ));
- msStringBuffer.append( (sal_Unicode)('A' + (nCol % 702) / 26 ));
- msStringBuffer.append( (sal_Unicode)('A' + nCol % 26) );
- }
-
- msStringBuffer.append( nRow + (sal_Int32)1 );
-}
-
void SchXMLExportHelper_Impl::addPosition( const awt::Point & rPosition )
{
mrExport.GetMM100UnitConverter().convertMeasureToXML(
@@ -3757,13 +3736,6 @@ void SchXMLExport::_ExportContent()
}
}
-void SchXMLExport::SetProgress( sal_Int32 nPercentage )
-{
- // set progress view
- if( mxStatusIndicator.is())
- mxStatusIndicator->setValue( nPercentage );
-}
-
UniReference< XMLPropertySetMapper > SchXMLExport::GetPropertySetMapper() const
{
return maExportHelper.m_pImpl->GetPropertySetMapper();