diff options
author | Eike Rathke <erack@redhat.com> | 2017-06-13 03:11:53 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2017-06-13 03:14:47 +0200 |
commit | a1ace08b5b86a76e7275dcef2545a7d52ae2ed2d (patch) | |
tree | 415e2a0b85b554e6c58f0559193aa370100b9c36 /forms | |
parent | 94662151fef3845aa7cf32dbd9d60fe10bc4a3c5 (diff) |
Fix subsequentcheck, TYPEDITEMLIST has to be OPTIONAL, tdf#108413 follow-up
Change-Id: Idb74536b9fa3837e36ae4fbb529d09b6218c80d8
Diffstat (limited to 'forms')
-rw-r--r-- | forms/source/component/ComboBox.cxx | 2 | ||||
-rw-r--r-- | forms/source/component/ListBox.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/forms/source/component/ComboBox.cxx b/forms/source/component/ComboBox.cxx index f17586d05982..240c4179febd 100644 --- a/forms/source/component/ComboBox.cxx +++ b/forms/source/component/ComboBox.cxx @@ -303,7 +303,7 @@ void OComboBoxModel::describeFixedProperties( Sequence< Property >& _rProps ) co DECL_BOOL_PROP1(EMPTY_IS_NULL, BOUND); DECL_PROP1(DEFAULT_TEXT, OUString, BOUND); DECL_PROP1(STRINGITEMLIST, Sequence< OUString >,BOUND); - DECL_PROP1(TYPEDITEMLIST, Sequence< Any >, BOUND); + DECL_PROP1(TYPEDITEMLIST, Sequence< Any >, OPTIONAL); END_DESCRIBE_PROPERTIES(); } diff --git a/forms/source/component/ListBox.cxx b/forms/source/component/ListBox.cxx index f1ba24325e00..60de8e2f7468 100644 --- a/forms/source/component/ListBox.cxx +++ b/forms/source/component/ListBox.cxx @@ -494,7 +494,7 @@ namespace frm DECL_PROP2(SELECT_VALUE, Any, BOUND, TRANSIENT); DECL_PROP1(DEFAULT_SELECT_SEQ, Sequence<sal_Int16>, BOUND); DECL_PROP1(STRINGITEMLIST, Sequence< OUString >, BOUND); - DECL_PROP1(TYPEDITEMLIST, Sequence< Any >, BOUND); + DECL_PROP1(TYPEDITEMLIST, Sequence< Any >, OPTIONAL); END_DESCRIBE_PROPERTIES(); } |