svx/source/unodraw/unoshape.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 6baacabbb74171287d449f23cb70bd2523b18039 Author: Noel Grandin <noel.gran...@collabora.co.uk> AuthorDate: Thu Aug 31 14:16:05 2023 +0200 Commit: Noel Grandin <noel.gran...@collabora.co.uk> CommitDate: Thu Aug 31 15:39:28 2023 +0200 ignore UnknownPropertyException in SvxShape::setPropertyValues which greatly reduces the log noise when debugging Change-Id: I556fb79c04b23f757b92ed635233d5222c177df1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156338 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk> diff --git a/svx/source/unodraw/unoshape.cxx b/svx/source/unodraw/unoshape.cxx index e3663d024f5e..362c0ba149a6 100644 --- a/svx/source/unodraw/unoshape.cxx +++ b/svx/source/unodraw/unoshape.cxx @@ -1709,7 +1709,7 @@ void SAL_CALL SvxShape::setPropertyValues( const css::uno::Sequence< OUString >& } catch (beans::UnknownPropertyException&) { - DBG_UNHANDLED_EXCEPTION("svx"); + // ignore, various code likes to opportunisticly set properties on objects that don't support those properties } catch (uno::Exception&) {