reportdesign: Drop unnecessary mutable keyword

There's no need for `m_xCellStylesPropertySetMapper`
to be mutable, it's only set in the ctor.

Change-Id: I383b80ebf293a129bdd006df2c3af44239c49064
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/187949
Tested-by: Jenkins
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
This commit is contained in:
Michael Weghorn
2025-07-16 11:38:45 +02:00
parent 3f615a8bcc
commit dd5f380a78

View File

@ -96,7 +96,7 @@ private:
rtl::Reference < SvXMLExportPropertyMapper > m_xParaPropMapper;
rtl::Reference < XMLPropertyHandlerFactory > m_xPropHdlFactory;
mutable rtl::Reference < XMLPropertySetMapper > m_xCellStylesPropertySetMapper;
rtl::Reference<XMLPropertySetMapper> m_xCellStylesPropertySetMapper;
rtl::Reference<reportdesign::OReportDefinition> m_pReportDefinition;
bool m_bAllreadyFilled;