summaryrefslogtreecommitdiff
path: root/oox/source/drawingml/textfield.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-06-15 13:12:33 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-06-15 19:57:59 +0200
commit8d234284d0ec0393e8d9d5057f68f48f33bc8d9d (patch)
tree7d08fffc27aa49ad3024afa8fa05418029457efd /oox/source/drawingml/textfield.cxx
parentdc9d11e20aca4f7df7bd3d11d84e963ce4abf2bc (diff)
loplugin:logexceptionnicely in linguistic..oox
Change-Id: I3f96494f5fecb2f1011578b768198c1204147202 Reviewed-on: https://gerrit.libreoffice.org/74099 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'oox/source/drawingml/textfield.cxx')
-rw-r--r--oox/source/drawingml/textfield.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/drawingml/textfield.cxx b/oox/source/drawingml/textfield.cxx
index 713c5a745b3d..545327e36228 100644
--- a/oox/source/drawingml/textfield.cxx
+++ b/oox/source/drawingml/textfield.cxx
@@ -130,9 +130,9 @@ void lclCreateTextFields( std::vector< Reference< XTextField > > & aFields,
xProps->setPropertyValue( "IsDate", makeAny( bIsDate ) );
xProps->setPropertyValue( "IsFixed", makeAny( false ) );
}
- catch(Exception & e)
+ catch(const Exception &)
{
- SAL_WARN("oox", e );
+ TOOLS_WARN_EXCEPTION("oox", "");
}
}
else if ( sType == "slidenum" )