summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-09-21 11:29:56 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-09-21 11:31:50 +0200
commit33725d5be1b2d4d4c34fa40070fd8e99de600473 (patch)
treedeb3e207f98446a3a75d11af474773a7a0111678 /sw
parentd430865f35b74706cd7a9b3cdab8084bc2068986 (diff)
attempt to fix android build
Change-Id: Ie3eede03b90db272d70e7cb383c7a69d9db0f2ae
Diffstat (limited to 'sw')
-rw-r--r--sw/source/core/edit/edfcol.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/edit/edfcol.cxx b/sw/source/core/edit/edfcol.cxx
index b413b0e290ed..2cd631b047f6 100644
--- a/sw/source/core/edit/edfcol.cxx
+++ b/sw/source/core/edit/edfcol.cxx
@@ -304,7 +304,7 @@ OUString lcl_getProperty(uno::Reference<beans::XPropertyContainer> const & rxPro
return xPropertySet->getPropertyValue(rName).get<OUString>();
}
-bool lcl_containsProperty(const uno::Sequence<beans::Property> & rProperties, const OUString& rName)
+static bool lcl_containsProperty(const uno::Sequence<beans::Property> & rProperties, const OUString& rName)
{
return std::find_if(rProperties.begin(), rProperties.end(), [&](const beans::Property& rProperty)
{
@@ -312,7 +312,7 @@ bool lcl_containsProperty(const uno::Sequence<beans::Property> & rProperties, co
}) != rProperties.end();
}
-void lcl_removeAllProperties(uno::Reference<beans::XPropertyContainer> const & rxPropertyContainer)
+static void lcl_removeAllProperties(uno::Reference<beans::XPropertyContainer> const & rxPropertyContainer)
{
uno::Reference<beans::XPropertySet> xPropertySet(rxPropertyContainer, uno::UNO_QUERY);
uno::Sequence<beans::Property> aProperties = xPropertySet->getPropertySetInfo()->getProperties();