loplugin:passstuffbyref

Change-Id: Ic4d2e018f193525be00da03fc14e147d6b68257f
This commit is contained in:
Stephan Bergmann
2016-01-20 10:02:46 +01:00
parent 3e58329130
commit 12181e6e2f

View File

@@ -1568,7 +1568,7 @@ void SwXStyle::SetPropertyValue<FN_UNO_NUM_RULES>(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)