summaryrefslogtreecommitdiff
path: root/xmloff/source/table
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-06-16 00:26:29 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-06-16 09:15:37 +0100
commit43afab8818d7bca24897ddee9b74fbeb74bf4c56 (patch)
tree97b161e5cc5dbe12129681365dc2c6f2ed745926 /xmloff/source/table
parent9e98f12db714b8a1a8cc64234bb4eea26e936166 (diff)
catch by const reference
Diffstat (limited to 'xmloff/source/table')
-rw-r--r--xmloff/source/table/XMLTableExport.cxx19
1 files changed, 9 insertions, 10 deletions
diff --git a/xmloff/source/table/XMLTableExport.cxx b/xmloff/source/table/XMLTableExport.cxx
index e53e321257af..a637fd263fb8 100644
--- a/xmloff/source/table/XMLTableExport.cxx
+++ b/xmloff/source/table/XMLTableExport.cxx
@@ -167,9 +167,8 @@ XMLTableExport::XMLTableExport(SvXMLExport& rExp, const rtl::Reference< SvXMLExp
}
}
}
- catch( Exception& e )
+ catch(const Exception&)
{
- (void)e;
}
mxCellExportPropertySetMapper = xExportPropertyMapper;
@@ -242,7 +241,7 @@ static bool has_states( const std::vector< XMLPropertyState >& xPropStates )
pTableInfo->maColumnStyleMap[xKey] = sStyleName;
}
}
- catch( Exception& )
+ catch(const Exception&)
{
OSL_FAIL("xmloff::XMLTableExport::collectTableAutoStyles(), exception during column style collection!");
}
@@ -310,12 +309,12 @@ static bool has_states( const std::vector< XMLPropertyState >& xPropStates )
aStringStatistic.clear();
}
- catch( Exception& )
+ catch(const Exception&)
{
OSL_FAIL("xmloff::XMLTableExport::collectTableAutoStyles(), exception during column style collection!");
}
}
- catch( Exception& )
+ catch(const Exception&)
{
OSL_FAIL("xmloff::XMLTableExport::collectTableAutoStyles(), exception caught!");
}
@@ -381,7 +380,7 @@ static bool has_states( const std::vector< XMLPropertyState >& xPropStates )
}
}
}
- catch( Exception )
+ catch(const Exception&)
{
OSL_FAIL( "XMLTableExport::exportTable(), exception cought!" );
}
@@ -446,7 +445,7 @@ static bool has_states( const std::vector< XMLPropertyState >& xPropStates )
}
DBG_ASSERT( (nRowSpan >= 1) && (nColSpan >= 1), "xmloff::XMLTableExport::ExportCell(), illegal row or col span < 1?" );
}
- catch ( Exception )
+ catch (const Exception&)
{
OSL_FAIL( "exception while exporting a table cell" );
}
@@ -569,7 +568,7 @@ void XMLTableExport::exportTableTemplates()
SvXMLElementExport element( mrExport, XML_NAMESPACE_TABLE, pElements->meElement, sal_True, sal_True );
}
}
- catch( Exception& )
+ catch(const Exception&)
{
OSL_FAIL("xmloff::XMLTableExport::exportTableTemplates(), exception caught!");
}
@@ -577,12 +576,12 @@ void XMLTableExport::exportTableTemplates()
pElements++;
}
}
- catch( Exception& )
+ catch(const Exception&)
{
OSL_FAIL("xmloff::XMLTableExport::exportTableDesigns(), exception caught while exporting a table design!");
}
}
- catch( Exception& )
+ catch(const Exception&)
{
OSL_FAIL("xmloff::XMLTableExport::exportTableDesigns(), exception caught!");
}