diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-02-24 10:24:14 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-02-24 09:17:34 +0000 |
commit | 48e83f7be240cd0af5b9f1ee5b87c4d9376c102e (patch) | |
tree | 15ccd05d11aca0461309670987ae71316a6232ca /cui/source/options/connpoolconfig.cxx | |
parent | 3422dfc1b61c15d7d3a6b0e1ee16c50457946cc0 (diff) |
makeAny->Any in cppuhelper..cui
Change-Id: Ia54e6e9b71df68bd04c304a0bb02da8ebac74420
Reviewed-on: https://gerrit.libreoffice.org/34603
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'cui/source/options/connpoolconfig.cxx')
-rw-r--r-- | cui/source/options/connpoolconfig.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/options/connpoolconfig.cxx b/cui/source/options/connpoolconfig.cxx index 1cbc2ca6a522..925c8468c325 100644 --- a/cui/source/options/connpoolconfig.cxx +++ b/cui/source/options/connpoolconfig.cxx @@ -185,9 +185,9 @@ namespace offapp aThisDriverSettings = aDriverSettings.createNode(aLoop->sName); // set the values - aThisDriverSettings.setNodeValue(getDriverNameNodeName(), makeAny(sThisDriverName)); + aThisDriverSettings.setNodeValue(getDriverNameNodeName(), Any(sThisDriverName)); aThisDriverSettings.setNodeValue(getEnableNodeName(), Any(aLoop->bEnabled)); - aThisDriverSettings.setNodeValue(getTimeoutNodeName(), makeAny(aLoop->nTimeoutSeconds)); + aThisDriverSettings.setNodeValue(getTimeoutNodeName(), Any(aLoop->nTimeoutSeconds)); } bNeedCommit = true; } |