summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-09-25 13:29:19 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-09-26 03:04:22 +0200
commitd6d04400095c2663ff5e1f58018d76df78121704 (patch)
treea8a93fb7f83557539b02b26d35217207f187d612 /comphelper
parentb722989678429fbdb353737660a19ecd1db28d89 (diff)
loplugin:constmethod in comphelper..desktop
Change-Id: I3dbdc72b05c9d01cce279c783c60d191900f8b7c Reviewed-on: https://gerrit.libreoffice.org/79538 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/source/misc/asyncquithandler.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/comphelper/source/misc/asyncquithandler.cxx b/comphelper/source/misc/asyncquithandler.cxx
index 282bbaea427e..fd53cbd9bf4b 100644
--- a/comphelper/source/misc/asyncquithandler.cxx
+++ b/comphelper/source/misc/asyncquithandler.cxx
@@ -44,7 +44,7 @@ void AsyncQuitHandler::QuitApplication()
void AsyncQuitHandler::SetForceQuit() { mbForceQuit = true; }
-bool AsyncQuitHandler::IsForceQuit() { return mbForceQuit; }
+bool AsyncQuitHandler::IsForceQuit() const { return mbForceQuit; }
IMPL_STATIC_LINK_NOARG(AsyncQuitHandler, OnAsyncQuit, void*, void) { QuitApplication(); }