diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-03-13 15:46:49 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-03-13 15:41:42 +0100 |
commit | 17e712ccc8fa93d57672916e3c8adaa8febc9f8c (patch) | |
tree | d62b91c405110bed4b90e93f8cf8237697dceec8 /sw/inc/shellio.hxx | |
parent | 37dc48300cc39e98c398737453e72836618ca2ac (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/inc/shellio.hxx')
-rw-r--r-- | sw/inc/shellio.hxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sw/inc/shellio.hxx b/sw/inc/shellio.hxx index a55e38eebcc3..080fb97071c7 100644 --- a/sw/inc/shellio.hxx +++ b/sw/inc/shellio.hxx @@ -150,12 +150,12 @@ public: class SW_DLLPUBLIC SwReader: public SwDocFac { SvStream* mpStrm; - tools::SvRef<SotStorage> const mpStg; + tools::SvRef<SotStorage> mpStg; css::uno::Reference < css::embed::XStorage > mxStg; - SfxMedium* const mpMedium; // Who wants to obtain a Medium (W4W). + SfxMedium* mpMedium; // Who wants to obtain a Medium (W4W). - SwPaM* const mpCursor; - OUString const maFileName; + SwPaM* mpCursor; + OUString maFileName; OUString msBaseURL; bool mbSkipImages; @@ -508,7 +508,7 @@ class SW_DLLPUBLIC SwWriter css::uno::Reference < css::embed::XStorage > m_xStg; SfxMedium* m_pMedium; - SwPaM* const m_pOutPam; + SwPaM* m_pOutPam; SwCursorShell *m_pShell; SwDoc &m_rDoc; @@ -535,9 +535,9 @@ ErrCode GetSaveWarningOfMSVBAStorage( SfxObjectShell &rDocS ); struct SwReaderWriterEntry { Reader* pReader; - FnGetReader const fnGetReader; - FnGetWriter const fnGetWriter; - bool const bDelReader; + FnGetReader fnGetReader; + FnGetWriter fnGetWriter; + bool bDelReader; SwReaderWriterEntry( const FnGetReader fnReader, const FnGetWriter fnWriter, bool bDel ) : pReader( nullptr ), fnGetReader( fnReader ), fnGetWriter( fnWriter ), bDelReader( bDel ) |