WaE: warning C4101: ´e´ : unreferenced local variable

Change-Id: Ifa143e5a8f0e8254fbd324032951517d3a30c4c8
This commit is contained in:
Caolán McNamara
2015-01-22 13:36:01 +00:00
parent ebf767eeb2
commit c0c1b01a32

View File

@@ -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() );
}