diff options
author | Noel Grandin <noel@peralex.com> | 2016-02-19 13:06:07 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-02-22 08:18:08 +0200 |
commit | f17f977d0ad5b4c51a8f58b43901f72de001a56d (patch) | |
tree | 24e25caa72db9d21b1728f52f17758ab103e9c76 /include/svx/sdr | |
parent | acd1c51791bdf522d7ffd8dd225fb59cd2eb17ff (diff) |
loplugin:write only fields
Change-Id: I45895e9845a9037da207f001fece427452ed499f
Diffstat (limited to 'include/svx/sdr')
-rw-r--r-- | include/svx/sdr/overlay/overlaymanager.hxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/svx/sdr/overlay/overlaymanager.hxx b/include/svx/sdr/overlay/overlaymanager.hxx index 08a0f3038b86..f91571e79e7f 100644 --- a/include/svx/sdr/overlay/overlaymanager.hxx +++ b/include/svx/sdr/overlay/overlaymanager.hxx @@ -59,7 +59,6 @@ namespace sdr protected: // the OutputDevice to work on, set on construction and not to be changed OutputDevice& mrOutputDevice; - const SdrModel* mpModel; // the vector of registered OverlayObjects OverlayObjectVector maOverlayObjects; @@ -89,11 +88,11 @@ namespace sdr // ViewTransformation and evtl. correct mfDiscreteOne double getDiscreteOne() const; - OverlayManager(OutputDevice& rOutputDevice, const SdrModel* pModel); + OverlayManager(OutputDevice& rOutputDevice); virtual ~OverlayManager(); public: - static rtl::Reference<OverlayManager> create(OutputDevice& rOutputDevice, const SdrModel* pModel); + static rtl::Reference<OverlayManager> create(OutputDevice& rOutputDevice); // access to current ViewInformation2D; this call checks and evtl. updates ViewInformation2D const drawinglayer::geometry::ViewInformation2D getCurrentViewInformation2D() const; |