summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
authorLionel Elie Mamane <lionel@mamane.lu>2013-04-22 21:53:59 +0200
committerLionel Elie Mamane <lionel@mamane.lu>2013-04-22 21:54:21 +0200
commitdfcbc1e1af08f555d21ae85550ec16fb001da991 (patch)
treeb1961401c557fec9adf0484cdf54817755bff176 /forms
parent1e392ea7a0d1504f701f9fed1492e64a78a65339 (diff)
Data-aware ListBox: declare the newly supported External Binding Types
Change-Id: I5ab021f99373f24b6be2ca6db00fe8b6e69bc9cb
Diffstat (limited to 'forms')
-rw-r--r--forms/source/component/ListBox.cxx12
1 files changed, 7 insertions, 5 deletions
diff --git a/forms/source/component/ListBox.cxx b/forms/source/component/ListBox.cxx
index 8771869e50ae..204d8749365f 100644
--- a/forms/source/component/ListBox.cxx
+++ b/forms/source/component/ListBox.cxx
@@ -1619,11 +1619,13 @@ namespace frm
//--------------------------------------------------------------------
Sequence< Type > OListBoxModel::getSupportedBindingTypes()
{
- Sequence< Type > aTypes(4);
- aTypes[0] = ::getCppuType( static_cast< Sequence< sal_Int32 >* >( NULL ) );
- aTypes[1] = ::getCppuType( static_cast< sal_Int32* >( NULL ) );
- aTypes[2] = ::getCppuType( static_cast< Sequence< OUString >* >( NULL ) );
- aTypes[3] = ::getCppuType( static_cast< OUString* >( NULL ) );
+ Sequence< Type > aTypes(6);
+ aTypes[0] = ::getCppuType( static_cast< Sequence< Any >* >( NULL ) );
+ aTypes[1] = ::getCppuType( static_cast< Any* >( NULL ) );
+ aTypes[2] = ::getCppuType( static_cast< Sequence< sal_Int32 >* >( NULL ) );
+ aTypes[3] = ::getCppuType( static_cast< sal_Int32* >( NULL ) );
+ aTypes[4] = ::getCppuType( static_cast< Sequence< OUString >* >( NULL ) );
+ aTypes[5] = ::getCppuType( static_cast< OUString* >( NULL ) );
return aTypes;
}