summaryrefslogtreecommitdiffstats
path: root/configmgr/source/childaccess.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-02-03 11:14:52 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-02-03 10:44:01 +0000
commit8a16f665b1172ed505bf17f9b30ffde8abc3b861 (patch)
tree07b07bf01aaf014c32d9635b448a3cfae40d8063 /configmgr/source/childaccess.cxx
parentremove unused text property of spinbuttons (diff)
downloadcore-8a16f665b1172ed505bf17f9b30ffde8abc3b861.tar.gz
core-8a16f665b1172ed505bf17f9b30ffde8abc3b861.zip
makeAny->Any in canvas..configmgr
Change-Id: Id06812595f373cd0da8b421dbac34a60a266ae6e Reviewed-on: https://gerrit.libreoffice.org/33869 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'configmgr/source/childaccess.cxx')
-rw-r--r--configmgr/source/childaccess.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/configmgr/source/childaccess.cxx b/configmgr/source/childaccess.cxx
index c38e58a4cd43..c45901fac623 100644
--- a/configmgr/source/childaccess.cxx
+++ b/configmgr/source/childaccess.cxx
@@ -268,9 +268,8 @@ css::uno::Any ChildAccess::asValue()
return child.is() ? child->asValue() : css::uno::Any();
}
}
- value = css::uno::makeAny(
- css::uno::Reference< css::uno::XInterface >(
- static_cast< cppu::OWeakObject * >(this)));
+ value <<= css::uno::Reference< css::uno::XInterface >(
+ static_cast< cppu::OWeakObject * >(this));
}
return value;
}