diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-04-10 14:12:13 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-04-10 14:13:19 +0200 |
commit | a7d3f57da50a21dbe27516948435255ad54249c7 (patch) | |
tree | 9575d59d66decab8f6cf4a3e7afbc0d5752a01fc | |
parent | bcd243793ee4174d71b5e61c88d2bc79fd0d7f1d (diff) |
warning C4101: 'e': unreferenced local variable
Change-Id: I3fb8a4f2854fb034d6b184ee46c04e8a8d03ca6a
-rw-r--r-- | ucbhelper/source/client/content.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ucbhelper/source/client/content.cxx b/ucbhelper/source/client/content.cxx index a0717861b2f5..4cb76286da08 100644 --- a/ucbhelper/source/client/content.cxx +++ b/ucbhelper/source/client/content.cxx @@ -298,6 +298,7 @@ static Reference< XContent > getContentNoThrow( } catch ( IllegalIdentifierException const & e ) { + SAL_WARN("ucbhelper", "getContentNoThrow: exception: " << e.Message); } return xContent; |