summaryrefslogtreecommitdiff
path: root/sw/source/core/fields
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2020-09-28 09:06:38 +0200
committerMiklos Vajna <vmiklos@collabora.com>2020-09-28 11:57:03 +0200
commit97bc09c1fef52c45cf299868045d250838d8e89b (patch)
treeb56e7f83363b0cd9673ab25e3ccd61e925cebd2b /sw/source/core/fields
parentb8bf1e11c55c0422a6f83d91376b93564c9c0d11 (diff)
sw: prefix members of SwFrameChangesLeave, SwSidebarItem, ...
... SwSizeEnterLeave and SwTextAPIObject See tdf#94879 for motivation. Change-Id: Iea12ac975b68700488f7b39bbb3596a011159c61 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103528 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'sw/source/core/fields')
-rw-r--r--sw/source/core/fields/postithelper.cxx8
-rw-r--r--sw/source/core/fields/textapi.cxx6
2 files changed, 7 insertions, 7 deletions
diff --git a/sw/source/core/fields/postithelper.cxx b/sw/source/core/fields/postithelper.cxx
index 38917d5474fb..85898389d69e 100644
--- a/sw/source/core/fields/postithelper.cxx
+++ b/sw/source/core/fields/postithelper.cxx
@@ -114,10 +114,10 @@ SwAnchoredObject* GetAnchoredObjectOfAnnotationMark(const sw::mark::IMark& rAnno
}
SwSidebarItem::SwSidebarItem(const bool aFocus)
- : pPostIt(nullptr)
- , bShow(true)
- , bFocus(aFocus)
- , bPendingLayout(false)
+ : mpPostIt(nullptr)
+ , mbShow(true)
+ , mbFocus(aFocus)
+ , mbPendingLayout(false)
, mLayoutStatus(SwPostItHelper::INVISIBLE)
, maLayoutInfo()
{
diff --git a/sw/source/core/fields/textapi.cxx b/sw/source/core/fields/textapi.cxx
index e0eb014d303a..511f5df9e87c 100644
--- a/sw/source/core/fields/textapi.cxx
+++ b/sw/source/core/fields/textapi.cxx
@@ -60,14 +60,14 @@ static const SvxItemPropertySet* ImplGetSvxTextPortionPropertySet()
SwTextAPIObject::SwTextAPIObject( std::unique_ptr<SwTextAPIEditSource> p )
: SvxUnoText( p.get(), ImplGetSvxTextPortionPropertySet(), uno::Reference < text::XText >() )
-, pSource(std::move(p))
+, m_pSource(std::move(p))
{
}
SwTextAPIObject::~SwTextAPIObject() throw()
{
- pSource->Dispose();
- pSource.reset();
+ m_pSource->Dispose();
+ m_pSource.reset();
}
struct SwTextAPIEditSource_Impl