summaryrefslogtreecommitdiff
path: root/oox/source/helper
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@suse.com>2011-10-25 13:36:56 +0300
committerTor Lillqvist <tlillqvist@suse.com>2011-10-25 13:55:43 +0300
commit2cfd5509f99b057a380da2f9c0c5713ba218545a (patch)
tree35bae4ae15c7b80150522441f623ef233c63d6ba /oox/source/helper
parentc4033b268d5d95feab92e4a81f9433cfe9d209ae (diff)
WaE: unreferenced local variable
Diffstat (limited to 'oox/source/helper')
-rw-r--r--oox/source/helper/propertymap.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/helper/propertymap.cxx b/oox/source/helper/propertymap.cxx
index ae2e495b90f0..1877dc7f5243 100644
--- a/oox/source/helper/propertymap.cxx
+++ b/oox/source/helper/propertymap.cxx
@@ -447,7 +447,7 @@ void PropertyMap::dump( Reference< XPropertySet > rXPropSet )
try {
lclDumpAnyValue (rXPropSet->getPropertyValue( props [i].Name ));
- } catch (const Exception& e) {
+ } catch (const Exception&) {
fprintf (stderr,"unable to get '%s' value\n", USS(props [i].Name));
}
}
@@ -800,7 +800,7 @@ void PropertyMap::dumpCode( Reference< XPropertySet > rXPropSet )
fprintf (stderr,"aPropertyMap [PROP_%s] <<= %s;\n", name.getStr(), var);
printLevel (level);
fprintf (stderr, "}\n");
- } catch (const Exception& e) {
+ } catch (const Exception&) {
fprintf (stderr,"unable to get '%s' value\n", USS(props [i].Name));
}
}