summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-02-27 14:33:17 +0000
committerCaolán McNamara <caolanm@redhat.com>2012-02-28 10:56:57 +0000
commite6bc67afc2f812dc5c61fad644c9b6f3f501a738 (patch)
treee24b8d0b0d83bd4baf65a8451140deed34eb3013 /filter
parent76c7fa90a817350d2cfc0467890a9237f736258c (diff)
WaE: unused variable
Diffstat (limited to 'filter')
-rw-r--r--filter/source/config/cache/typedetection.cxx13
1 files changed, 6 insertions, 7 deletions
diff --git a/filter/source/config/cache/typedetection.cxx b/filter/source/config/cache/typedetection.cxx
index af907bcb0900..397de51020c8 100644
--- a/filter/source/config/cache/typedetection.cxx
+++ b/filter/source/config/cache/typedetection.cxx
@@ -949,8 +949,6 @@ namespace
return ::rtl::OUString();
}
-
-
void TypeDetection::impl_seekStreamToZero(comphelper::MediaDescriptor& rDescriptor)
{
// try to seek to 0 ...
@@ -965,15 +963,16 @@ void TypeDetection::impl_seekStreamToZero(comphelper::MediaDescriptor& rDescript
{
xSeek->seek(0);
}
- catch(const css::uno::RuntimeException& exRun)
- { throw; }
+ catch(const css::uno::RuntimeException&)
+ {
+ throw;
+ }
catch(const css::uno::Exception&)
- {}
+ {
+ }
}
}
-
-
::rtl::OUString TypeDetection::impl_askDetectService(const ::rtl::OUString& sDetectService,
::comphelper::MediaDescriptor& rDescriptor )
{