summaryrefslogtreecommitdiff
path: root/sot/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-03-12 16:50:59 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-03-12 19:43:04 +0100
commit819e76dc6082a21fd9c4f8866e4fc4cd20cd90f1 (patch)
tree818946d65af4a80d1599c1d5d70001e4fbed848a /sot/inc
parent503e0173bf1e207b05a33cc17e03d8b9dbcbc56b (diff)
Revert "loplugin:constfields in smoketest..sot"
This reverts commit 1de7e818a417a412678013c100b4bf73fd8858ac. Change-Id: Ie1100fd1af636a0538f589845b9391ba40dbf12a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90417 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sot/inc')
-rw-r--r--sot/inc/sysformats.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sot/inc/sysformats.hxx b/sot/inc/sysformats.hxx
index a34375df3d8b..7bca96ef425c 100644
--- a/sot/inc/sysformats.hxx
+++ b/sot/inc/sysformats.hxx
@@ -30,10 +30,10 @@
struct SotAction_Impl
{
- SotClipboardFormatId const nFormatId; // Clipboard Id
- sal_uInt16 const nAction; // Action Id
- SotExchangeActionFlags const nFlags; // Action Id
- sal_uInt8 const nContextCheckId; // additional check of content in clipboard
+ SotClipboardFormatId nFormatId; // Clipboard Id
+ sal_uInt16 nAction; // Action Id
+ SotExchangeActionFlags nFlags; // Action Id
+ sal_uInt8 nContextCheckId; // additional check of content in clipboard
constexpr SotAction_Impl(SotClipboardFormatId _nFormatId, sal_uInt16 _nAction, SotExchangeActionFlags _nFlags, sal_uInt8 _nContextCheckId)
: nFormatId(_nFormatId), nAction(_nAction), nFlags(_nFlags), nContextCheckId(_nContextCheckId) {}