summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdpage.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-04-10 10:10:18 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-04-11 08:09:29 +0200
commit489a0039f86ef48d5aa85f4ff56a9cb63c29b56f (patch)
tree8f40cb4eb285020f2b4b422b76601249092330bb /svx/source/svdraw/svdpage.cxx
parent56fd725b9d5ac2a990715d30cd477b01c34781db (diff)
loplugin:inlinefields in SdrPageProperties
Change-Id: If6aa6f62687b46ccca2b6b3bffba2eac4e2753ef Reviewed-on: https://gerrit.libreoffice.org/36372 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/svdraw/svdpage.cxx')
-rw-r--r--svx/source/svdraw/svdpage.cxx15
1 files changed, 7 insertions, 8 deletions
diff --git a/svx/source/svdraw/svdpage.cxx b/svx/source/svdraw/svdpage.cxx
index 794a4e779e15..cec60959272b 100644
--- a/svx/source/svdraw/svdpage.cxx
+++ b/svx/source/svdraw/svdpage.cxx
@@ -1049,7 +1049,7 @@ void SdrPageProperties::ImpRemoveStyleSheet()
if(mpStyleSheet)
{
EndListening(*mpStyleSheet);
- mpProperties->SetParent(nullptr);
+ maProperties.SetParent(nullptr);
mpStyleSheet = nullptr;
}
}
@@ -1061,7 +1061,7 @@ void SdrPageProperties::ImpAddStyleSheet(SfxStyleSheet& rNewStyleSheet)
ImpRemoveStyleSheet();
mpStyleSheet = &rNewStyleSheet;
StartListening(rNewStyleSheet);
- mpProperties->SetParent(&rNewStyleSheet.GetItemSet());
+ maProperties.SetParent(&rNewStyleSheet.GetItemSet());
}
}
@@ -1081,18 +1081,17 @@ SdrPageProperties::SdrPageProperties(SdrPage& rSdrPage)
: SfxListener(),
mpSdrPage(&rSdrPage),
mpStyleSheet(nullptr),
- mpProperties(new SfxItemSet(mpSdrPage->GetModel()->GetItemPool(), XATTR_FILL_FIRST, XATTR_FILL_LAST))
+ maProperties(mpSdrPage->GetModel()->GetItemPool(), XATTR_FILL_FIRST, XATTR_FILL_LAST)
{
if(!rSdrPage.IsMasterPage())
{
- mpProperties->Put(XFillStyleItem(drawing::FillStyle_NONE));
+ maProperties.Put(XFillStyleItem(drawing::FillStyle_NONE));
}
}
SdrPageProperties::~SdrPageProperties()
{
ImpRemoveStyleSheet();
- delete mpProperties;
}
void SdrPageProperties::Notify(SfxBroadcaster& /*rBC*/, const SfxHint& rHint)
@@ -1125,20 +1124,20 @@ bool SdrPageProperties::isUsedByModel() const
void SdrPageProperties::PutItemSet(const SfxItemSet& rSet)
{
OSL_ENSURE(!mpSdrPage->IsMasterPage(), "Item set at MasterPage Attributes (!)");
- mpProperties->Put(rSet);
+ maProperties.Put(rSet);
ImpPageChange(*mpSdrPage);
}
void SdrPageProperties::PutItem(const SfxPoolItem& rItem)
{
OSL_ENSURE(!mpSdrPage->IsMasterPage(), "Item set at MasterPage Attributes (!)");
- mpProperties->Put(rItem);
+ maProperties.Put(rItem);
ImpPageChange(*mpSdrPage);
}
void SdrPageProperties::ClearItem(const sal_uInt16 nWhich)
{
- mpProperties->ClearItem(nWhich);
+ maProperties.ClearItem(nWhich);
ImpPageChange(*mpSdrPage);
}