summaryrefslogtreecommitdiff
path: root/svx/source/unodraw
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2023-10-30 10:40:03 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2023-10-30 14:21:51 +0100
commite5675d7e03de5962af8828663529a780ca31dd5b (patch)
tree2db0d203e3f4b246dc3afdd6b220bb1a3427abe5 /svx/source/unodraw
parent4e2c70024c2370b2fc3514ee52ec433be998ec57 (diff)
rename mxItemSet->moItemSet in SvxShapeImpl
because the improved naming is useful for a bigger patch that I want to land Change-Id: I3acea11288a2e70d6ea91c99b52d3a05916da4d2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158643 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/unodraw')
-rw-r--r--svx/source/unodraw/unoshape.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/svx/source/unodraw/unoshape.cxx b/svx/source/unodraw/unoshape.cxx
index 2ce0ed35c3e6..b6ef17b86616 100644
--- a/svx/source/unodraw/unoshape.cxx
+++ b/svx/source/unodraw/unoshape.cxx
@@ -111,7 +111,7 @@ class GDIMetaFile;
struct SvxShapeImpl
{
- std::optional<SfxItemSet> mxItemSet;
+ std::optional<SfxItemSet> moItemSet;
SdrObjKind mnObjId;
SvxShapeMaster* mpMaster;
bool mbDisposing;
@@ -1534,11 +1534,11 @@ void SvxShape::_setPropertyValue( const OUString& rPropertyName, const uno::Any&
SfxItemSet* pSet;
if( mbIsMultiPropertyCall && !bIsNotPersist )
{
- if( !mpImpl->mxItemSet )
+ if( !mpImpl->moItemSet )
{
- mpImpl->mxItemSet.emplace( GetSdrObject()->GetProperties().CreateObjectSpecificItemSet( GetSdrObject()->getSdrModelFromSdrObject().GetItemPool() ) );
+ mpImpl->moItemSet.emplace( GetSdrObject()->GetProperties().CreateObjectSpecificItemSet( GetSdrObject()->getSdrModelFromSdrObject().GetItemPool() ) );
}
- pSet = &*mpImpl->mxItemSet;
+ pSet = &*mpImpl->moItemSet;
}
else
{
@@ -1713,15 +1713,15 @@ void SAL_CALL SvxShape::setPropertyValues( const css::uno::Sequence< OUString >&
}
}
- if( mpImpl->mxItemSet && HasSdrObject() )
- GetSdrObject()->SetMergedItemSetAndBroadcast( *mpImpl->mxItemSet );
+ if( mpImpl->moItemSet && HasSdrObject() )
+ GetSdrObject()->SetMergedItemSetAndBroadcast( *mpImpl->moItemSet );
}
void SvxShape::endSetPropertyValues()
{
mbIsMultiPropertyCall = false;
- mpImpl->mxItemSet.reset();
+ mpImpl->moItemSet.reset();
}