summaryrefslogtreecommitdiff
path: root/sw/source/filter/xml/xmltbli.cxx
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/xml/xmltbli.cxx
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/xml/xmltbli.cxx')
-rw-r--r--sw/source/filter/xml/xmltbli.cxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/sw/source/filter/xml/xmltbli.cxx b/sw/source/filter/xml/xmltbli.cxx
index 184047f4b622..70d024881465 100644
--- a/sw/source/filter/xml/xmltbli.cxx
+++ b/sw/source/filter/xml/xmltbli.cxx
@@ -387,7 +387,7 @@ class SwXMLTableCellContext_Impl : public SvXMLImportContext
OUString m_sSaveParaDefault;
OUString m_StringValue;
- SvXMLImportContextRef const m_xMyTable;
+ SvXMLImportContextRef m_xMyTable;
double m_fValue;
bool m_bHasValue;
@@ -713,7 +713,7 @@ namespace {
class SwXMLTableColContext_Impl : public SvXMLImportContext
{
- SvXMLImportContextRef const xMyTable;
+ SvXMLImportContextRef xMyTable;
SwXMLTableContext *GetTable() { return static_cast<SwXMLTableContext *>(xMyTable.get()); }
@@ -802,7 +802,7 @@ namespace {
class SwXMLTableColsContext_Impl : public SvXMLImportContext
{
- SvXMLImportContextRef const xMyTable;
+ SvXMLImportContextRef xMyTable;
SwXMLTableContext *GetTable() { return static_cast<SwXMLTableContext *>(xMyTable.get()); }
@@ -851,7 +851,7 @@ namespace {
class SwXMLTableRowContext_Impl : public SvXMLImportContext
{
- SvXMLImportContextRef const xMyTable;
+ SvXMLImportContextRef xMyTable;
sal_uInt32 nRowRepeat;
@@ -968,9 +968,9 @@ namespace {
class SwXMLTableRowsContext_Impl : public SvXMLImportContext
{
- SvXMLImportContextRef const xMyTable;
+ SvXMLImportContextRef xMyTable;
- bool const bHeader;
+ bool bHeader;
SwXMLTableContext *GetTable() { return static_cast<SwXMLTableContext *>(xMyTable.get()); }
@@ -1188,9 +1188,9 @@ static SwDDEFieldType* lcl_GetDDEFieldType(SwXMLDDETableContext_Impl* pContext,
class TableBoxIndex
{
public:
- OUString const msName;
- sal_Int32 const mnWidth;
- bool const mbProtected;
+ OUString msName;
+ sal_Int32 mnWidth;
+ bool mbProtected;
TableBoxIndex( const OUString& rName, sal_Int32 nWidth,
bool bProtected ) :