sd/source/core/stlsheet.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit cffc470c31062cd35f715bc45a53080735ff3356 Author: Noel Grandin <noel.gran...@collabora.co.uk> AuthorDate: Thu Aug 31 14:43:45 2023 +0200 Commit: Noel Grandin <noel.gran...@collabora.co.uk> CommitDate: Thu Aug 31 18:56:33 2023 +0200 ignore UnknownPropertyException in SdStyleSheet::setPropertyValues reduce log noise Change-Id: I25a61ecbc7c3357b980086b591f5906991244012 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156341 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk> diff --git a/sd/source/core/stlsheet.cxx b/sd/source/core/stlsheet.cxx index 2038604861df..3084d494b454 100644 --- a/sd/source/core/stlsheet.cxx +++ b/sd/source/core/stlsheet.cxx @@ -1253,7 +1253,7 @@ void SAL_CALL SdStyleSheet::setPropertyValues(const css::uno::Sequence<OUString> } catch (const css::beans::UnknownPropertyException&) { - DBG_UNHANDLED_EXCEPTION("sd"); + // ignore this, some code likes to liberally sprinkle properties all over stuff that doesn't support those properties } }