diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-03-07 17:22:10 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-03-07 21:37:06 +0000 |
commit | d22c2f2faa34a63f7cbc8c42e0f9d68e8609f121 (patch) | |
tree | edb5dc281bc33294302489d66aebf7976336b219 /include/svx/sdr | |
parent | 62b245e4b09f7efc98bc2c8bca4e5bb804b97d21 (diff) |
sdr::overlay::OverlayManager: rmOutputDevice -> mrOutputDevice
Change-Id: I8fa5cc15e2d69b572f59f254eeeae051865a5b5f
Reviewed-on: https://gerrit.libreoffice.org/14785
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'include/svx/sdr')
-rw-r--r-- | include/svx/sdr/overlay/overlaymanager.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svx/sdr/overlay/overlaymanager.hxx b/include/svx/sdr/overlay/overlaymanager.hxx index 24e77e8a7f30..637112a165e3 100644 --- a/include/svx/sdr/overlay/overlaymanager.hxx +++ b/include/svx/sdr/overlay/overlaymanager.hxx @@ -62,7 +62,7 @@ namespace sdr protected: // the OutputDevice to work on, set on construction and not to be changed - OutputDevice& rmOutputDevice; + OutputDevice& mrOutputDevice; // the vector of registered OverlayObjects OverlayObjectVector maOverlayObjects; @@ -114,7 +114,7 @@ namespace sdr virtual void restoreBackground(const vcl::Region& rRegion) const; // get the OutputDevice - OutputDevice& getOutputDevice() const { return rmOutputDevice; } + OutputDevice& getOutputDevice() const { return mrOutputDevice; } // add and remove OverlayObjects void add(OverlayObject& rOverlayObject); |