summaryrefslogtreecommitdiff
path: root/binaryurp
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-02-03 08:54:47 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-02-03 08:50:50 +0000
commit83721f4365d234b62f9e3517345c8d3fda19f2c6 (patch)
treeaf77c202dbdf0b969559441c724020e5d7a9da92 /binaryurp
parent9007cc7bcaa8bc1b38c54f167349f71373f02dec (diff)
makeAny->Any in basctl..chart2
Change-Id: Ief1cdffbfc59ab4e35ac945d020772ff84c50d61 Reviewed-on: https://gerrit.libreoffice.org/33867 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'binaryurp')
-rw-r--r--binaryurp/source/bridge.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/binaryurp/source/bridge.cxx b/binaryurp/source/bridge.cxx
index a47fbaa9a3cb..1a05bc26430f 100644
--- a/binaryurp/source/bridge.cxx
+++ b/binaryurp/source/bridge.cxx
@@ -779,7 +779,7 @@ void Bridge::handleCommitChangeRequest(
bCcMode = false;
bExc = true;
ret = mapCppToBinaryAny(
- css::uno::makeAny(
+ css::uno::Any(
css::bridge::InvalidProtocolChangeException(
"InvalidProtocolChangeException",
css::uno::Reference< css::uno::XInterface >(), s[i],
@@ -941,7 +941,7 @@ void Bridge::sendCommitChangeRequest() {
css::uno::Sequence< css::bridge::ProtocolProperty > s(1);
s[0].Name = "CurrentContext";
std::vector< BinaryAny > a;
- a.push_back(mapCppToBinaryAny(css::uno::makeAny(s)));
+ a.push_back(mapCppToBinaryAny(css::uno::Any(s)));
sendProtPropRequest(OutgoingRequest::KIND_COMMIT_CHANGE, a);
}