From 12181e6e2f9be553b93371432b79a5f00aa076ea Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 20 Jan 2016 10:02:46 +0100 Subject: [PATCH] loplugin:passstuffbyref Change-Id: Ic4d2e018f193525be00da03fc14e147d6b68257f --- sw/source/core/unocore/unostyle.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sw/source/core/unocore/unostyle.cxx b/sw/source/core/unocore/unostyle.cxx index 2e6ef30f727a..31168388f274 100644 --- a/sw/source/core/unocore/unostyle.cxx +++ b/sw/source/core/unocore/unostyle.cxx @@ -1568,7 +1568,7 @@ void SwXStyle::SetPropertyValue(const SfxItemPropertySimpleEnt && (!pFormat->GetCharFormat() || pFormat->GetCharFormat()->GetName() != pCharName)) { auto pCharFormatIt(std::find_if(m_pDoc->GetCharFormats()->begin(), m_pDoc->GetCharFormats()->end(), - [pCharName] (SwCharFormat* pF) { return pF->GetName() == pCharName; })); + [&pCharName] (SwCharFormat* pF) { return pF->GetName() == pCharName; })); if(pCharFormatIt != m_pDoc->GetCharFormats()->end()) aFormat.SetCharFormat(*pCharFormatIt); else if(m_pBasePool)