sw/source/writerfilter/dmapper/StyleSheetTable.cxx | 2 +- sw/source/writerfilter/dmapper/StyleSheetTable.hxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
New commits: commit a015bd6ed7724cd1f2d1346445b598ad79181cd6 Author: Noel Grandin <[email protected]> AuthorDate: Tue Feb 3 15:54:40 2026 +0200 Commit: Noel Grandin <[email protected]> CommitDate: Thu Feb 5 09:27:23 2026 +0100 tdf#170595 StyleSheetTable::getOrCreateCharStyle can take const param Change-Id: I3fee3375096069cbb68bedbcf3a72a3bd1bdb8ea Reviewed-on: https://gerrit.libreoffice.org/c/core/+/198598 Tested-by: Jenkins Reviewed-by: Noel Grandin <[email protected]> diff --git a/sw/source/writerfilter/dmapper/StyleSheetTable.cxx b/sw/source/writerfilter/dmapper/StyleSheetTable.cxx index 8ec83a48b5fa..5ba0c1a04802 100644 --- a/sw/source/writerfilter/dmapper/StyleSheetTable.cxx +++ b/sw/source/writerfilter/dmapper/StyleSheetTable.cxx @@ -2181,7 +2181,7 @@ void StyleSheetTable::applyDefaults(bool bParaProperties) } -OUString StyleSheetTable::getOrCreateCharStyle( PropertyValueVector_t& rCharProperties, bool bAlwaysCreate ) +OUString StyleSheetTable::getOrCreateCharStyle( const PropertyValueVector_t& rCharProperties, bool bAlwaysCreate ) { //find out if any of the styles already has the required properties then return its name OUString sListLabel = HasListCharStyle(rCharProperties); diff --git a/sw/source/writerfilter/dmapper/StyleSheetTable.hxx b/sw/source/writerfilter/dmapper/StyleSheetTable.hxx index 42bed9fe6303..a66c1d4b999b 100644 --- a/sw/source/writerfilter/dmapper/StyleSheetTable.hxx +++ b/sw/source/writerfilter/dmapper/StyleSheetTable.hxx @@ -116,7 +116,7 @@ public: OUString CloneTOCStyle(FontTablePtr const& rFontTable, StyleSheetEntryPtr const pStyle, OUString const& rName); void ApplyClonedTOCStyles(); - OUString getOrCreateCharStyle( PropertyValueVector_t& rCharProperties, bool bAlwaysCreate ); + OUString getOrCreateCharStyle( const PropertyValueVector_t& rCharProperties, bool bAlwaysCreate ); void SetDefaultParaProps(PropertyIds eId, const css::uno::Any& rAny); PropertyMapPtr const & GetDefaultParaProps() const;
