summaryrefslogtreecommitdiff
path: root/sax/source/fastparser/fastparser.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sax/source/fastparser/fastparser.cxx')
-rw-r--r--sax/source/fastparser/fastparser.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sax/source/fastparser/fastparser.cxx b/sax/source/fastparser/fastparser.cxx
index 82a285664823..38a1d2e65709 100644
--- a/sax/source/fastparser/fastparser.cxx
+++ b/sax/source/fastparser/fastparser.cxx
@@ -456,7 +456,7 @@ void Entity::startElement( Event *pEvent )
maContextStack.top().mxContext.set( static_cast<XFastContextHandler *>( xContext.get() ) );
xContext.set( NULL, UNO_REF_NO_ACQUIRE );
}
- catch (const Exception& e)
+ catch (const Exception&)
{
saveException( ::cppu::getCaughtException() );
}
@@ -475,7 +475,7 @@ void Entity::characters( const OUString& sChars )
{
xContext->characters( sChars );
}
- catch (const Exception& e)
+ catch (const Exception&)
{
saveException( ::cppu::getCaughtException() );
}
@@ -499,7 +499,7 @@ void Entity::endElement()
else
xContext->endUnknownElement( aContext.maNamespace, aContext.maElementName );
}
- catch (const Exception& e)
+ catch (const Exception&)
{
saveException( ::cppu::getCaughtException() );
}