Kaydet (Commit) 4712767c authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#983681 Uncaught exception

Change-Id: I13b97703f6f9c3411e6da8ec3c71f6e51c8bfc13
üst ad0c4bf5
......@@ -110,7 +110,8 @@ class MediaTypeDetectionHelper : public ::cppu::WeakImplHelper2< ::com::sun::
@onerror -
*//*-*****************************************************************************************************/
virtual sal_Bool SAL_CALL mapStrings( css::uno::Sequence< OUString >& seqParameter ) throw( css::uno::RuntimeException );
virtual sal_Bool SAL_CALL mapStrings(css::uno::Sequence< OUString >& seqParameter)
throw (css::uno::RuntimeException, std::exception);
//-------------------------------------------------------------------------------------------------------------
// variables
......
......@@ -57,9 +57,8 @@ DEFINE_INIT_SERVICE ( MediaTypeDetectionHelper,
// XStringMapping
//*****************************************************************************************************************
sal_Bool SAL_CALL MediaTypeDetectionHelper::mapStrings(
uno::Sequence< OUString >& rSeq )
throw(uno::RuntimeException)
sal_Bool SAL_CALL MediaTypeDetectionHelper::mapStrings(uno::Sequence< OUString >& rSeq)
throw (uno::RuntimeException, std::exception)
{
sal_Bool bModified = sal_False;
for( sal_Int32 i = rSeq.getLength(); i--; )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment