Fix subsequentcheck, TYPEDITEMLIST has to be OPTIONAL, tdf#108413 follow-up

Change-Id: Idb74536b9fa3837e36ae4fbb529d09b6218c80d8
diff --git a/forms/source/component/ComboBox.cxx b/forms/source/component/ComboBox.cxx
index f17586d..240c417 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 f1ba243..60de8e2 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();
    }