diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-10-27 09:03:20 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-10-30 13:21:13 +0100 |
commit | db378d64a9ca8675066fda31f3bd77dc37c52398 (patch) | |
tree | dc6c2c85b4996cff913c9f590eda19712bf9e309 /vcl/inc/salobj.hxx | |
parent | 9ee60319c675087486907707c8a2b18b5c9dc9fc (diff) |
loplugin:constmethod in vcl and stoc
Change-Id: I7c02eecc16ca7cf89d9f7021116b0226885dbf06
Reviewed-on: https://gerrit.libreoffice.org/44044
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/inc/salobj.hxx')
-rw-r--r-- | vcl/inc/salobj.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/inc/salobj.hxx b/vcl/inc/salobj.hxx index 07f1843fadcc..e4c8b918c09b 100644 --- a/vcl/inc/salobj.hxx +++ b/vcl/inc/salobj.hxx @@ -59,12 +59,12 @@ public: void SetMouseTransparent( bool bMouseTransparent ) { m_bMouseTransparent = bMouseTransparent; } - bool IsMouseTransparent() + bool IsMouseTransparent() const { return m_bMouseTransparent; } void EnableEraseBackground( bool bEnable ) { m_bEraseBackground = bEnable; } - bool IsEraseBackgroundEnabled() + bool IsEraseBackgroundEnabled() const { return m_bEraseBackground; } }; |