summaryrefslogtreecommitdiff
path: root/include/svx/svdpage.hxx
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 /include/svx/svdpage.hxx
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 'include/svx/svdpage.hxx')
-rw-r--r--include/svx/svdpage.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/svx/svdpage.hxx b/include/svx/svdpage.hxx
index 11db722b0acf..987acd87aa16 100644
--- a/include/svx/svdpage.hxx
+++ b/include/svx/svdpage.hxx
@@ -27,6 +27,7 @@
#include <tools/weakbase.hxx>
#include <tools/contnr.hxx>
#include <cppuhelper/weakref.hxx>
+#include <svl/itemset.hxx>
#include <svx/svdtypes.hxx>
#include <svx/sdrpageuser.hxx>
#include <svx/sdr/contact/viewobjectcontactredirector.hxx>
@@ -312,7 +313,7 @@ private:
// data
SdrPage* mpSdrPage;
SfxStyleSheet* mpStyleSheet;
- SfxItemSet* mpProperties;
+ SfxItemSet maProperties;
// internal helpers
void ImpRemoveStyleSheet();
@@ -331,7 +332,7 @@ public:
virtual bool isUsedByModel() const override;
// data read/write
- const SfxItemSet& GetItemSet() const { return *mpProperties;}
+ const SfxItemSet& GetItemSet() const { return maProperties;}
void PutItemSet(const SfxItemSet& rSet);
void PutItem(const SfxPoolItem& rItem);
void ClearItem(const sal_uInt16 nWhich = 0);