summaryrefslogtreecommitdiff
path: root/include/comphelper/propertyvalue.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/comphelper/propertyvalue.hxx')
-rw-r--r--include/comphelper/propertyvalue.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/comphelper/propertyvalue.hxx b/include/comphelper/propertyvalue.hxx
index 04968d2b010e..ba442c12a931 100644
--- a/include/comphelper/propertyvalue.hxx
+++ b/include/comphelper/propertyvalue.hxx
@@ -26,7 +26,7 @@ template<typename T> css::beans::PropertyValue makePropertyValue(const OUString&
{
css::beans::PropertyValue aValue;
aValue.Name = rName;
- aValue.Value <<= rValue;
+ aValue.Value = css::uno::toAny(rValue);
return aValue;
}