summaryrefslogtreecommitdiff
path: root/include/svtools/ehdl.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-03-13 16:49:06 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-03-13 19:20:38 +0100
commitd077cd6189da55cab0bdea3a265446f362160ae0 (patch)
treecf6bc114247d2ffae7294582611d3c1ae5654bec /include/svtools/ehdl.hxx
parent17e712ccc8fa93d57672916e3c8adaa8febc9f8c (diff)
Revert "loplugin:constfields in svtools"
This reverts commit 07c4aa4298f062cee1894b80ef82e76d5ffcf4c7. Change-Id: Ic3f639581b9aca373f82c011f15be60d117b1943 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90476 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svtools/ehdl.hxx')
-rw-r--r--include/svtools/ehdl.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/svtools/ehdl.hxx b/include/svtools/ehdl.hxx
index ba7a20e11dfb..054ac94fdc23 100644
--- a/include/svtools/ehdl.hxx
+++ b/include/svtools/ehdl.hxx
@@ -42,10 +42,10 @@ public:
bool GetString(ErrCode nErrId, OUString &rStr) override;
private:
- sal_uInt16 const nCtxId;
+ sal_uInt16 nCtxId;
const ErrMsgCode* pIds;
- std::locale const aResLocale;
- OUString const aArg1;
+ std::locale aResLocale;
+ OUString aArg1;
};
class SVT_DLLPUBLIC SfxErrorHandler : private ErrorHandler
@@ -59,10 +59,10 @@ protected:
private:
- ErrCodeArea const lStart;
- ErrCodeArea const lEnd;
+ ErrCodeArea lStart;
+ ErrCodeArea lEnd;
const ErrMsgCode* pIds;
- std::locale const aResLocale;
+ std::locale aResLocale;
SVT_DLLPRIVATE static void GetClassString(ErrCodeClass lErrId, OUString &);
virtual bool CreateString(const ErrorInfo *, OUString &) const override;