summaryrefslogtreecommitdiff
path: root/svx/source/inc/fmshimp.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-09-02 14:27:49 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-09-03 10:33:23 +0200
commit1e8f0940e6c6246e53550ac48eaae4f416e61777 (patch)
tree813a29491bf82b061cc574dc68b7a05f5764862a /svx/source/inc/fmshimp.hxx
parent602c6097850d6d659b760bdb0dd83baa906d416c (diff)
loplugin:constmethod in svx
Change-Id: I6ae7c04479e3ea8ecd7535c33224a5e7095b64bb Reviewed-on: https://gerrit.libreoffice.org/78396 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/inc/fmshimp.hxx')
-rw-r--r--svx/source/inc/fmshimp.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/inc/fmshimp.hxx b/svx/source/inc/fmshimp.hxx
index 334ab071093d..dd60783d9fa8 100644
--- a/svx/source/inc/fmshimp.hxx
+++ b/svx/source/inc/fmshimp.hxx
@@ -287,7 +287,7 @@ private:
public:
SAL_DLLPRIVATE void EnableTrackProperties_Lock(bool bEnable) { m_bTrackProperties = bEnable; }
- SAL_DLLPRIVATE bool IsTrackPropertiesEnabled_Lock() { return m_bTrackProperties; }
+ SAL_DLLPRIVATE bool IsTrackPropertiesEnabled_Lock() const { return m_bTrackProperties; }
// activation handling
SAL_DLLPRIVATE void viewActivated_Lock(FmFormView& _rCurrentView, bool _bSyncAction = false);
@@ -444,7 +444,7 @@ public:
// Setting the curObject/selObject/curForm is delayed (SetSelectionDelayed). With the
// following functions this can be inquired/enforced.
- SAL_DLLPRIVATE inline bool IsSelectionUpdatePending_Lock();
+ SAL_DLLPRIVATE inline bool IsSelectionUpdatePending_Lock() const;
SAL_DLLPRIVATE void ForceUpdateSelection_Lock();
SAL_DLLPRIVATE css::uno::Reference< css::frame::XModel> getContextDocument_Lock() const;
@@ -483,7 +483,7 @@ private:
SAL_DLLPRIVATE void implAdjustConfigCache_Lock();
SAL_DLLPRIVATE css::uno::Reference< css::awt::XControlContainer >
- getControlContainerForView_Lock();
+ getControlContainerForView_Lock() const;
/** finds and sets a default for m_xCurrentForm, if it is currently NULL
*/
@@ -529,7 +529,7 @@ private:
};
-inline bool FmXFormShell::IsSelectionUpdatePending_Lock()
+inline bool FmXFormShell::IsSelectionUpdatePending_Lock() const
{
return m_aMarkTimer.IsActive();
}