catch by const reference
This commit is contained in:
parent
38483573ba
commit
8c31daedf9
1 changed files with 7 additions and 7 deletions
|
@ -234,27 +234,27 @@ sal_Int32 SchXMLWrapper::ImportStream(
|
|||
}
|
||||
}
|
||||
}
|
||||
catch( xml::sax::SAXParseException&)
|
||||
catch(const xml::sax::SAXParseException&)
|
||||
{
|
||||
if( bEncrypted )
|
||||
return ERRCODE_SFX_WRONGPASSWORD;
|
||||
return ERRCODE_SFX_GENERAL;
|
||||
}
|
||||
catch( xml::sax::SAXException&)
|
||||
catch(const xml::sax::SAXException&)
|
||||
{
|
||||
if( bEncrypted )
|
||||
return ERRCODE_SFX_WRONGPASSWORD;
|
||||
return ERRCODE_SFX_GENERAL;
|
||||
}
|
||||
catch( io::IOException&)
|
||||
catch(const io::IOException&)
|
||||
{
|
||||
return ERRCODE_SFX_GENERAL;
|
||||
}
|
||||
catch( packages::zip::ZipIOException& )
|
||||
catch(const packages::zip::ZipIOException&)
|
||||
{
|
||||
return ERRCODE_IO_BROKENPACKAGE;
|
||||
}
|
||||
catch( uno::Exception&)
|
||||
catch(const uno::Exception&)
|
||||
{
|
||||
return ERRCODE_SFX_GENERAL;
|
||||
}
|
||||
|
@ -388,7 +388,7 @@ sal_Bool SchXMLWrapper::ExportStream(
|
|||
rOutputStream->Commit();
|
||||
}
|
||||
}
|
||||
catch( uno::Exception )
|
||||
catch(const uno::Exception&)
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -481,7 +481,7 @@ sal_Bool SchXMLWrapper::Export()
|
|||
// graphics resolver has to be destroyed this way!
|
||||
SvXMLGraphicHelper::Destroy( pGraphicHelper );
|
||||
}
|
||||
catch( uno::Exception)
|
||||
catch(const uno::Exception&)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue