summaryrefslogtreecommitdiff
path: root/sd/source/ui
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2024-09-30 12:56:46 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2024-10-01 11:16:12 +0200
commit7ccad64046ec871b8f4524497a703f9548ddbdfa (patch)
tree374f9198986f9eb6e3291105437125508584e58a /sd/source/ui
parent9a2f11cc1fc9b0157e185b39abbd6a50c4cfc8cd (diff)
loplugin:unusedfields
Change-Id: I391bcae0c8491a17c57083e1375c8ed50d72ee9f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/174295 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd/source/ui')
-rw-r--r--sd/source/ui/unoidl/unomodel.cxx6
-rw-r--r--sd/source/ui/view/ToolBarManager.cxx2
2 files changed, 1 insertions, 7 deletions
diff --git a/sd/source/ui/unoidl/unomodel.cxx b/sd/source/ui/unoidl/unomodel.cxx
index b8f752199f4b..e680534fb46c 100644
--- a/sd/source/ui/unoidl/unomodel.cxx
+++ b/sd/source/ui/unoidl/unomodel.cxx
@@ -233,8 +233,6 @@ public:
private:
bool getFillStyleImpl(const uno::Reference<drawing::XDrawPage>& xDrawPage);
private:
- uno::Reference<drawing::XDrawPage> mxDrawPage;
- uno::Reference<drawing::XDrawPage> mxMasterPage;
uno::Reference<beans::XPropertySet> mxBackground;
bool mbIsCustom;
bool bHasBackground;
@@ -245,9 +243,7 @@ private:
SlideBackgroundInfo::SlideBackgroundInfo(
const uno::Reference<drawing::XDrawPage>& xDrawPage,
const uno::Reference<drawing::XDrawPage>& xMasterPage)
- : mxDrawPage(xDrawPage)
- , mxMasterPage(xMasterPage)
- , mbIsCustom(false)
+ : mbIsCustom(false)
, bHasBackground(false)
, mbIsSolidColor(false)
, maFillStyle(drawing::FillStyle_NONE)
diff --git a/sd/source/ui/view/ToolBarManager.cxx b/sd/source/ui/view/ToolBarManager.cxx
index 89a8f9cfba61..dac9aa1d8c96 100644
--- a/sd/source/ui/view/ToolBarManager.cxx
+++ b/sd/source/ui/view/ToolBarManager.cxx
@@ -180,8 +180,6 @@ private:
things easier and does not waste too much memory.
*/
GroupedShellList maCurrentList;
-
- std::shared_ptr<ViewShell> pCurrentActiveShell;
};
/** This class concentrates the knowledge about when to show what tool bars