summaryrefslogtreecommitdiff
path: root/forms/source
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2008-07-10 14:51:40 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2008-07-10 14:51:40 +0000
commitc5ab528bff7418cf807f333229d00bf274d3bbd9 (patch)
treed099158fe0c0437ce011ebb16342e8e6663a1e33 /forms/source
parentb1c3b172a9549a9316c2cdd49d32cee5a6816e63 (diff)
INTEGRATION: CWS sclistposlinks (1.60.10); FILE MERGED
2008/07/03 20:45:05 fs 1.60.10.1: #i91342# getSupportedBindingTypes: order is important
Diffstat (limited to 'forms/source')
-rw-r--r--forms/source/component/ListBox.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/forms/source/component/ListBox.cxx b/forms/source/component/ListBox.cxx
index fe7663a8d7ad..153391cf9fde 100644
--- a/forms/source/component/ListBox.cxx
+++ b/forms/source/component/ListBox.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: ListBox.cxx,v $
- * $Revision: 1.60 $
+ * $Revision: 1.61 $
*
* This file is part of OpenOffice.org.
*
@@ -1321,10 +1321,10 @@ namespace frm
Sequence< Type > OListBoxModel::getSupportedBindingTypes()
{
Sequence< Type > aTypes(4);
- aTypes[0] = ::getCppuType( static_cast< ::rtl::OUString* >( NULL ) );
- aTypes[1] = ::getCppuType( static_cast< Sequence< ::rtl::OUString >* >( NULL ) );
- aTypes[2] = ::getCppuType( static_cast< sal_Int32* >( NULL ) );
- aTypes[3] = ::getCppuType( static_cast< Sequence< sal_Int32 >* >( NULL ) );
+ aTypes[0] = ::getCppuType( static_cast< Sequence< sal_Int32 >* >( NULL ) );
+ aTypes[1] = ::getCppuType( static_cast< sal_Int32* >( NULL ) );
+ aTypes[2] = ::getCppuType( static_cast< Sequence< ::rtl::OUString >* >( NULL ) );
+ aTypes[3] = ::getCppuType( static_cast< ::rtl::OUString* >( NULL ) );
return aTypes;
}