summaryrefslogtreecommitdiff
path: root/oox/source/xls/sheetdatacontext.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'oox/source/xls/sheetdatacontext.cxx')
-rw-r--r--oox/source/xls/sheetdatacontext.cxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/oox/source/xls/sheetdatacontext.cxx b/oox/source/xls/sheetdatacontext.cxx
index be5644554d6d..43c2f1b0b654 100644
--- a/oox/source/xls/sheetdatacontext.cxx
+++ b/oox/source/xls/sheetdatacontext.cxx
@@ -171,7 +171,6 @@ OoxSheetDataContext::OoxSheetDataContext( OoxWorksheetFragmentBase& rFragment )
ContextHandlerRef OoxSheetDataContext::onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs )
{
- OOX_LOADSAVE_TIMER( ONCREATESHEETCONTEXT );
switch( getCurrentElement() )
{
case XLS_TOKEN( sheetData ):
@@ -201,7 +200,6 @@ ContextHandlerRef OoxSheetDataContext::onCreateContext( sal_Int32 nElement, cons
void OoxSheetDataContext::onEndElement( const OUString& rChars )
{
- OOX_LOADSAVE_TIMER( ONENDSHEETELEMENT );
switch( getCurrentElement() )
{
case XLS_TOKEN( v ):
@@ -342,7 +340,6 @@ ContextHandlerRef OoxSheetDataContext::onCreateRecordContext( sal_Int32 nRecId,
void OoxSheetDataContext::importRow( const AttributeList& rAttribs )
{
- OOX_LOADSAVE_TIMER( IMPORTROW );
RowModel aModel;
aModel.mnFirstRow = aModel.mnLastRow = rAttribs.getInteger( XML_r, -1 );
aModel.mfHeight = rAttribs.getDouble( XML_ht, -1.0 );
@@ -361,7 +358,6 @@ void OoxSheetDataContext::importRow( const AttributeList& rAttribs )
void OoxSheetDataContext::importCell( const AttributeList& rAttribs )
{
- OOX_LOADSAVE_TIMER( IMPORTCELL );
maCurrCell.reset();
maCurrCell.mxCell = getCell( rAttribs.getString( XML_r, OUString() ), &maCurrCell.maAddress );
maCurrCell.mnCellType = rAttribs.getToken( XML_t, XML_n );