diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-08-15 10:48:27 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-08-15 16:07:17 +0200 |
commit | 58f45fdf1968b6605e55fa36c3cbd250b332ae95 (patch) | |
tree | e460a58c5d42f8dacd5b8aab9036cfad409b49b6 /svl | |
parent | fb282d552f5a8ecd89c6fd845a6db116d8362114 (diff) |
make SfxStringItem hashable
which shaves some time off loading complex files.
Note that this class is often used as a superclass, so I checked all of
the subclasses and marked some of them as "does not support hashing"
until they can be independently verified to be safe
Change-Id: Id4187eda8d6145e89e17dc10c2e3113b7a93da85
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/171891
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/items/stritem.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/items/stritem.cxx b/svl/source/items/stritem.cxx index a384e23a2ee8..0c6b8be1763d 100644 --- a/svl/source/items/stritem.cxx +++ b/svl/source/items/stritem.cxx @@ -49,7 +49,7 @@ bool SfxStringItem::PutValue(const css::uno::Any& rVal, m_aValue = aTheValue; return true; } - OSL_FAIL("CntUnencodedStringItem::PutValue(): Wrong type"); + OSL_FAIL("SfxStringItem::PutValue(): Wrong type"); return false; } |