summaryrefslogtreecommitdiff
path: root/sw/source/core/access
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2020-10-12 09:02:47 +0200
committerMiklos Vajna <vmiklos@collabora.com>2020-10-12 10:08:49 +0200
commit1ff072e3b672d864f119efdeba93248f47042ad1 (patch)
treeb4389cd529da66b6169ab21f1f2a1bcfc5fc6197 /sw/source/core/access
parent47da5a7e95ef45efcc9e13f225273e728d1fbc58 (diff)
sw: prefix members of SwFormatAnchor, SwXDocumentPropertyHelper, ...
... SwXLinkNameAccessWrapper and TableHeadingCheck See tdf#94879 for motivation. Change-Id: I1108abc0d4ee6179c0b4d4dbe18af0730edbd2ba Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104200 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'sw/source/core/access')
-rw-r--r--sw/source/core/access/AccessibilityCheck.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/core/access/AccessibilityCheck.cxx b/sw/source/core/access/AccessibilityCheck.cxx
index e3699d9038b0..08e8f1d47051 100644
--- a/sw/source/core/access/AccessibilityCheck.cxx
+++ b/sw/source/core/access/AccessibilityCheck.cxx
@@ -697,18 +697,18 @@ class TableHeadingCheck : public NodeCheck
{
private:
// Boolean indicating if heading-in-table warning is already triggered.
- bool bPrevPassed;
+ bool m_bPrevPassed;
public:
TableHeadingCheck(sfx::AccessibilityIssueCollection& rIssueCollection)
: NodeCheck(rIssueCollection)
- , bPrevPassed(true)
+ , m_bPrevPassed(true)
{
}
void check(SwNode* pCurrent) override
{
- if (!bPrevPassed)
+ if (!m_bPrevPassed)
return;
const SwTextNode* textNode = pCurrent->GetTextNode();
@@ -719,7 +719,7 @@ public:
if (parentTable)
{
- bPrevPassed = false;
+ m_bPrevPassed = false;
lclAddIssue(m_rIssueCollection, SwResId(STR_HEADING_IN_TABLE));
}
}