diff options
author | David Tardon <dtardon@redhat.com> | 2014-11-04 17:03:05 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2014-11-04 19:52:51 +0100 |
commit | cd6e6712a18f45c92d6f915275b32964af887586 (patch) | |
tree | 72b5d6a74debe6e43cc6dc6b606192a76ef9849a | |
parent | 8bb9a0611438cd668a35d6424c41a476c7d9ceba (diff) |
coverity#706543 uncaught exception
Change-Id: I65932932712dad87f8e21dcd09f477744cc33763
-rw-r--r-- | forms/source/component/ListBox.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/forms/source/component/ListBox.cxx b/forms/source/component/ListBox.cxx index 5931ac7e280d..2d42a979432c 100644 --- a/forms/source/component/ListBox.cxx +++ b/forms/source/component/ListBox.cxx @@ -412,7 +412,7 @@ namespace frm case PROPERTY_ID_VALUE_SEQ : SAL_WARN( "forms.component", "ValueItemList is read-only!" ); - throw PropertyVetoException(); + throw IllegalArgumentException(); case PROPERTY_ID_SELECT_VALUE_SEQ : bModified = tryPropertyValue(_rConvertedValue, _rOldValue, _rValue, getCurrentMultiValue()); |