diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-05-28 12:20:55 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-28 13:49:49 +0100 |
commit | 1b4856158617f574665cd5e147be105520adaa75 (patch) | |
tree | 5c1a219f0d3ebe6f80990622a34563f380b71552 /basic | |
parent | d1c950a2b1fbf49de396a1847619b4546bdf50a9 (diff) |
coverity#706231 Uncaught exception
Change-Id: I1f1acb91a97ff7c9fb50ad36eca7b91d361a1276
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/classes/propacc.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/classes/propacc.cxx b/basic/source/classes/propacc.cxx index 913237ca2439..dbcec4c25980 100644 --- a/basic/source/classes/propacc.cxx +++ b/basic/source/classes/propacc.cxx @@ -177,7 +177,7 @@ void SbPropertyValues::setPropertyValues(const Sequence< PropertyValue >& rPrope ::com::sun::star::uno::RuntimeException, std::exception) { if ( !m_aPropVals.empty() ) - throw PropertyExistException(); + throw IllegalArgumentException(); const PropertyValue *pPropVals = rPropertyValues.getConstArray(); for (sal_Int32 n = 0; n < rPropertyValues.getLength(); ++n) |