diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-09-03 11:45:59 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-09-03 13:13:06 +0200 |
commit | d2848c44ec0f9b04a0f9b24653ef0273ae7ace97 (patch) | |
tree | d3bcb226d2733362312e6b6fe804b7a2d1f166a7 /include/xmloff/ProgressBarHelper.hxx | |
parent | 815afb06b78b8fbf83f6a48b89500fb34dc4b40b (diff) |
loplugin:constmethod in xmloff
Change-Id: I79ff1001a3ac8fde10de1ab391772e2bfeb6a314
Reviewed-on: https://gerrit.libreoffice.org/78546
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/xmloff/ProgressBarHelper.hxx')
-rw-r--r-- | include/xmloff/ProgressBarHelper.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/xmloff/ProgressBarHelper.hxx b/include/xmloff/ProgressBarHelper.hxx index c593b5023a5d..272ea33e9b30 100644 --- a/include/xmloff/ProgressBarHelper.hxx +++ b/include/xmloff/ProgressBarHelper.hxx @@ -59,9 +59,9 @@ public: // Progress Bar the same position as before void ChangeReference(sal_Int32 nNewReference); - sal_Int32 GetReference() { return nReference; } - sal_Int32 GetValue() { return nValue; } - bool GetRepeat() { return bRepeat; } + sal_Int32 GetReference() const { return nReference; } + sal_Int32 GetValue() const { return nValue; } + bool GetRepeat() const { return bRepeat; } }; #endif |