diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-08-19 14:20:26 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-08-19 15:28:33 +0200 |
commit | 0f44815ce7b2925189cd603853ce55d8363549dd (patch) | |
tree | 87702a1d0f50a8b550ee1b4b9b84ddef60b46ee7 /toolkit/source/awt | |
parent | 9239b11cee9f02cedcb0c240637e58cc8b795086 (diff) |
loplugin:constmethods
Change-Id: I786096b989daa6004a6527aafbe825b6f0a22d90
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120710
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'toolkit/source/awt')
-rw-r--r-- | toolkit/source/awt/vclxwindow.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/source/awt/vclxwindow.cxx b/toolkit/source/awt/vclxwindow.cxx index 80e9db718500..28eb6942fe6c 100644 --- a/toolkit/source/awt/vclxwindow.cxx +++ b/toolkit/source/awt/vclxwindow.cxx @@ -2550,7 +2550,7 @@ Reference< XStyleSettings > SAL_CALL VCLXWindow::getStyleSettings() return mpImpl->getStyleSettings(); } -bool VCLXWindow::IsDisposed() +bool VCLXWindow::IsDisposed() const { return mpImpl->mbDisposing; } |