summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2012-02-05 10:49:59 +0100
committerJulien Nabet <serval2412@yahoo.fr>2012-02-05 10:50:31 +0100
commitfa6665282e2a7c8753eb35b2f03499134413caca (patch)
tree9fb2c707d5c73b5f8a1064dfb4c5ea855b33b820 /comphelper
parent1535eed3d40d9741f3cdf68d32bc132e2a39f287 (diff)
Some cppcheck cleaning
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/source/misc/mediadescriptor.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/comphelper/source/misc/mediadescriptor.cxx b/comphelper/source/misc/mediadescriptor.cxx
index 90b713c138ba..038e718d03d0 100644
--- a/comphelper/source/misc/mediadescriptor.cxx
+++ b/comphelper/source/misc/mediadescriptor.cxx
@@ -369,8 +369,8 @@ sal_Bool MediaDescriptor::isStreamReadOnly() const
}
}
}
- catch(const css::uno::RuntimeException& exRun)
- { throw exRun; }
+ catch(const css::uno::RuntimeException& )
+ { throw; }
catch(const css::uno::Exception&)
{}
@@ -750,8 +750,8 @@ sal_Bool MediaDescriptor::impl_openStreamWithURL( const ::rtl::OUString& sURL, s
return xUriRef->getUriReference();
}
}
- catch(const css::uno::RuntimeException& exRun)
- { throw exRun; }
+ catch(const css::uno::RuntimeException&)
+ { throw; }
catch(const css::uno::Exception&)
{}