diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-07-07 13:03:15 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-07-07 13:05:04 +0200 |
commit | a7ac7067fc0ac3e660943033e60e382be45d0879 (patch) | |
tree | 0f14e2e18f2d71041f3275f7e53e384029027121 /cui | |
parent | e546ed01e6bf6dbd8a30cecead4b0b75e2afe92a (diff) |
loplugin:staticcall
Change-Id: I4ad6b51c42e23ac5027f4f7b53b086c77b784129
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/options/optaboutconfig.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/options/optaboutconfig.cxx b/cui/source/options/optaboutconfig.cxx index 9ed75c283007..54cf5e5043c7 100644 --- a/cui/source/options/optaboutconfig.cxx +++ b/cui/source/options/optaboutconfig.cxx @@ -872,7 +872,7 @@ void CuiAboutConfigTabPage::InsertEntry( SvTreeListEntry *pEntry) OUString sParentName = sPath.copy(prevIndex+1, index - prevIndex - 1); bool hasEntry = false; - for(pParentEntry = m_pPrefBox->FirstChild(pGrandParentEntry); pParentEntry != nullptr; pParentEntry = m_pPrefBox->NextSibling(pParentEntry)) + for(pParentEntry = m_pPrefBox->FirstChild(pGrandParentEntry); pParentEntry != nullptr; pParentEntry = SvTreeListBox::NextSibling(pParentEntry)) if(static_cast< SvLBoxString& >(pParentEntry->GetItem(1)).GetText() == sParentName) { hasEntry = true; |