diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2011-11-04 02:02:20 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2011-11-04 02:03:19 +0900 |
commit | 225cbd10f7fcb285c20c18c68fcae3a2cbfe9711 (patch) | |
tree | bbaaec04a04872814f4755420443edd1ee6927dd /sc/source/ui/unoobj/scdetect.cxx | |
parent | 97b5ed250d531382564d64521f8b803c92f775a0 (diff) |
catch exception by const reference
Diffstat (limited to 'sc/source/ui/unoobj/scdetect.cxx')
-rw-r--r-- | sc/source/ui/unoobj/scdetect.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/unoobj/scdetect.cxx b/sc/source/ui/unoobj/scdetect.cxx index 3e97c5549cda..59ba7f1fe304 100644 --- a/sc/source/ui/unoobj/scdetect.cxx +++ b/sc/source/ui/unoobj/scdetect.cxx @@ -366,7 +366,7 @@ static sal_Bool lcl_MayBeDBase( SvStream& rStream ) aFilterName = pFilter->GetName(); aTypeName = SfxFilter::GetTypeFromStorage( xStorage, pFilter ? pFilter->IsOwnTemplateFormat() : false, &aFilterName ); } - catch( lang::WrappedTargetException& aWrap ) + catch( const lang::WrappedTargetException& aWrap ) { packages::zip::ZipIOException aZipException; |