summaryrefslogtreecommitdiff
path: root/configmgr
diff options
context:
space:
mode:
Diffstat (limited to 'configmgr')
-rw-r--r--configmgr/source/type.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/configmgr/source/type.cxx b/configmgr/source/type.cxx
index 329762313f30..aab5d0f86cd5 100644
--- a/configmgr/source/type.cxx
+++ b/configmgr/source/type.cxx
@@ -99,7 +99,7 @@ css::uno::Type const & mapType(Type type) {
}
Type getDynamicType(css::uno::Any const & value) {
- switch (value.getValueType().getTypeClass()) {
+ switch (value.getValueTypeClass()) {
case css::uno::TypeClass_VOID:
return TYPE_NIL;
case css::uno::TypeClass_BOOLEAN:
@@ -125,7 +125,7 @@ Type getDynamicType(css::uno::Any const & value) {
return TYPE_STRING;
case css::uno::TypeClass_SEQUENCE: //TODO
{
- OUString name(value.getValueType().getTypeName());
+ OUString name(value.getValueTypeName());
if ( name == "[]byte" ) {
return TYPE_HEXBINARY;
} else if (name == "[]boolean")