diff options
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/core/filterdetect.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/oox/source/core/filterdetect.cxx b/oox/source/core/filterdetect.cxx index 5c01b2e0f8f0..c0bde4dabe82 100644 --- a/oox/source/core/filterdetect.cxx +++ b/oox/source/core/filterdetect.cxx @@ -178,7 +178,7 @@ void FilterDetectDocHandler::parseRelationship( const AttributeList& rAttribs ) if ( xAbs.is() ) maTargetPath = xAbs->getPath(); } - catch( Exception& e) + catch( const Exception& ) { } } @@ -620,7 +620,7 @@ Reference< XInputStream > FilterDetect::extractUnencryptedPackage( MediaDescript } } } - catch( Exception& ) + catch( const Exception& ) { } @@ -685,7 +685,7 @@ OUString SAL_CALL FilterDetect::detect( Sequence< PropertyValue >& rMediaDescSeq aParser.parseStream( aZipStorage, CREATE_OUSTRING( "[Content_Types].xml" ) ); } } - catch( Exception& e ) + catch( const Exception& ) { } |