diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-06-17 08:22:14 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-06-18 08:06:53 +0200 |
commit | 4079282731cdf276715af6571786ab75845efc15 (patch) | |
tree | 1cb1fdfcd69fef31288475dc7ab4edf39afcf4c3 /svx/source/fmcomp/gridcell.cxx | |
parent | 129e799e1acf25d7dcd7ccf0438896cc125e7653 (diff) |
loplugin:logexceptionnicely in svx
Change-Id: I741cf5befbec0c2ab353baae4865722ede993c2e
Reviewed-on: https://gerrit.libreoffice.org/74143
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/fmcomp/gridcell.cxx')
-rw-r--r-- | svx/source/fmcomp/gridcell.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/fmcomp/gridcell.cxx b/svx/source/fmcomp/gridcell.cxx index 7cb4a87cd4d0..622a22c4682a 100644 --- a/svx/source/fmcomp/gridcell.cxx +++ b/svx/source/fmcomp/gridcell.cxx @@ -3562,9 +3562,9 @@ void FmXTextCell::PaintFieldToCell(OutputDevice& rDev, else rDev.DrawText(rRect, aText, nStyle); } - catch (const Exception& e) + catch (const Exception&) { - SAL_WARN("svx.fmcomp", "PaintFieldToCell: caught " << e); + TOOLS_WARN_EXCEPTION("svx.fmcomp", "PaintFieldToCell"); } } |