summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-03-31 09:33:01 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-03-31 09:33:01 +0100
commitecd0148ba550cf033adf7781492c8821d841992e (patch)
tree05876ff1eb3a9a3ea71e86f8b81f2ca011a682d4
parentd4a304bfda2d4cf2bf1624a738ae9e2f9e98ca2f (diff)
we don't use the exception value
-rw-r--r--oox/source/export/drawingml.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/export/drawingml.cxx b/oox/source/export/drawingml.cxx
index b9d50b867..48f4eb453 100644
--- a/oox/source/export/drawingml.cxx
+++ b/oox/source/export/drawingml.cxx
@@ -146,7 +146,7 @@ void lcl_dump_pset(Reference< XPropertySet > rXPropSet)
}
else
fprintf (stderr,"??? <unhandled type>\n");
- } catch(const Exception &e) {
+ } catch(const Exception &) {
fprintf (stderr,"unable to get '%s' value\n", USS(props [i].Name));
}
}
@@ -946,7 +946,7 @@ void DrawingML::WriteRun( Reference< XTextRange > rRun )
if( sText.getLength() < 1 )
return;
}
- catch (const Exception &e) {
+ catch (const Exception &) {
return;
}
}