summaryrefslogtreecommitdiff
path: root/sw/source/filter/inc/fltshell.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-03-13 15:46:49 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-03-13 15:41:42 +0100
commit17e712ccc8fa93d57672916e3c8adaa8febc9f8c (patch)
treed62b91c405110bed4b90e93f8cf8237697dceec8 /sw/source/filter/inc/fltshell.hxx
parent37dc48300cc39e98c398737453e72836618ca2ac (diff)
Revert "loplugin:constfields in sw"
This reverts commit 4969f4c0d3e2581aaa8a5b5a5769840fa6b6f8ea. Change-Id: I527e9366b05e8a20633720e334395b285991c524 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90473 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/source/filter/inc/fltshell.hxx')
-rw-r--r--sw/source/filter/inc/fltshell.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/sw/source/filter/inc/fltshell.hxx b/sw/source/filter/inc/fltshell.hxx
index e0b41c93b120..92846746d186 100644
--- a/sw/source/filter/inc/fltshell.hxx
+++ b/sw/source/filter/inc/fltshell.hxx
@@ -126,7 +126,7 @@ private:
typedef std::vector<std::unique_ptr<SwFltStackEntry>> Entries;
Entries m_Entries;
- sal_uLong const nFieldFlags;
+ sal_uLong nFieldFlags;
bool bHasSdOD;
bool bSdODChecked;
@@ -212,9 +212,9 @@ class SwFltAnchorListener : public SvtListener
class SW_DLLPUBLIC SwFltRedline : public SfxPoolItem
{
public:
- DateTime const aStamp;
- RedlineType const eType;
- std::size_t const nAutorNo;
+ DateTime aStamp;
+ RedlineType eType;
+ std::size_t nAutorNo;
SwFltRedline(RedlineType eType_,
std::size_t nAutorNo_,
@@ -234,10 +234,10 @@ class SW_DLLPUBLIC SwFltBookmark : public SfxPoolItem
{
private:
- long const mnHandle;
+ long mnHandle;
OUString maName;
- OUString const maVal;
- bool const mbIsTOCBookmark;
+ OUString maVal;
+ bool mbIsTOCBookmark;
public:
SwFltBookmark( const OUString& rNa,
@@ -311,7 +311,7 @@ SW_DLLPUBLIC void UpdatePageDescs(SwDoc &rDoc, size_t nInPageDescOffset);
class ImportProgress
{
private:
- SwDocShell * const m_pDocShell;
+ SwDocShell *m_pDocShell;
public:
ImportProgress(SwDocShell *pDocShell, long nStartVal, long nEndVal)
: m_pDocShell(pDocShell)