summaryrefslogtreecommitdiff
path: root/sw/source/uibase/utlui
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-04-20 10:34:01 +0200
committerNoel Grandin <noel@peralex.com>2016-04-21 08:32:47 +0200
commit5abc669599001bf888b97c4d3c2715e1fb7523b9 (patch)
tree2407c6fc040a795e6ffc69de02ba940285c04c7f /sw/source/uibase/utlui
parent5bb308a9ad16f6002486a60e4a753693818580b6 (diff)
new plugin stylepolice
check for local variables which follow our member field naming convention, which is highly confusing Change-Id: Idacedf7145d09843e96a584237b385f7662eea10
Diffstat (limited to 'sw/source/uibase/utlui')
-rw-r--r--sw/source/uibase/utlui/content.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/uibase/utlui/content.cxx b/sw/source/uibase/utlui/content.cxx
index 476c95e36b30..165289ba089d 100644
--- a/sw/source/uibase/utlui/content.cxx
+++ b/sw/source/uibase/utlui/content.cxx
@@ -1418,7 +1418,7 @@ bool SwContentTree::Expand( SvTreeListEntry* pParent )
m_nHiddenBlock |= nOr;
if((pCntType->GetType() == ContentTypeId::OUTLINE))
{
- std::map< void*, bool > mCurrOutLineNodeMap;
+ std::map< void*, bool > aCurrOutLineNodeMap;
SwWrtShell* pShell = GetWrtShell();
bool bBool = SvTreeListBox::Expand(pParent);
@@ -1429,17 +1429,17 @@ bool SwContentTree::Expand( SvTreeListEntry* pParent )
{
sal_Int32 nPos = static_cast<SwContent*>(pChild->GetUserData())->GetYPos();
void* key = static_cast<void*>(pShell->getIDocumentOutlineNodesAccess()->getOutlineNode( nPos ));
- mCurrOutLineNodeMap.insert(std::map<void*, bool>::value_type( key, false ) );
+ aCurrOutLineNodeMap.insert(std::map<void*, bool>::value_type( key, false ) );
std::map<void*, bool>::iterator iter = mOutLineNodeMap.find( key );
if( iter != mOutLineNodeMap.end() && mOutLineNodeMap[key])
{
- mCurrOutLineNodeMap[key] = true;
+ aCurrOutLineNodeMap[key] = true;
SvTreeListBox::Expand(pChild);
}
}
pChild = Next(pChild);
}
- mOutLineNodeMap = mCurrOutLineNodeMap;
+ mOutLineNodeMap = aCurrOutLineNodeMap;
return bBool;
}