diff options
author | Lars Langhans <lla@openoffice.org> | 2001-05-15 11:42:08 +0000 |
---|---|---|
committer | Lars Langhans <lla@openoffice.org> | 2001-05-15 11:42:08 +0000 |
commit | b3fe8a9979cc6d503cb175404d441638c6136c1a (patch) | |
tree | 2fe6b5e0b554bc95faefbe520d2e2a6418d3c940 /configmgr/source | |
parent | 1303d4c268c0b761048fa2e457efb6ef4e82de62 (diff) |
getElementType changes
Diffstat (limited to 'configmgr/source')
-rw-r--r-- | configmgr/source/xml/valueconverter.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configmgr/source/xml/valueconverter.cxx b/configmgr/source/xml/valueconverter.cxx index fb3a53cad49d..9ea36a8dc420 100644 --- a/configmgr/source/xml/valueconverter.cxx +++ b/configmgr/source/xml/valueconverter.cxx @@ -2,9 +2,9 @@ * * $RCSfile: valueconverter.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: pl $ $Date: 2001-05-11 19:25:44 $ + * last change: $Author: lla $ $Date: 2001-05-15 12:42:08 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -314,7 +314,7 @@ template <class Type> bool convertListToSequence(StringList const& aStringList, uno::Sequence< Type >& rSequence, OValueConverter const& rConverter) CFG_THROW( ( script::CannotConvertException, uno::RuntimeException ) ) { - uno::TypeClass const aElementTypeClass = rSequence.getElementType().getTypeClass(); + uno::TypeClass const aElementTypeClass = ::getCppuType(static_cast<uno::Sequence<Type> const*>(0)).getTypeClass(); rSequence.realloc(aStringList.size()); |