Kaydet (Commit) 1a88414f authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#707098 Uncaught exception

Change-Id: I88e0ddd6de87bf8264e06ee34d6c144f16a7aa60
üst d9282904
......@@ -625,13 +625,8 @@ void SAL_CALL ConfigurationController::initialize (const Sequence<Any>& aArgumen
}
}
void ConfigurationController::ThrowIfDisposed (void) const
throw (::com::sun::star::lang::DisposedException)
void ConfigurationController::ThrowIfDisposed () const
throw (css::lang::DisposedException, css::uno::RuntimeException)
{
if (mbIsDisposed)
{
......@@ -647,9 +642,6 @@ void ConfigurationController::ThrowIfDisposed (void) const
}
}
//===== ConfigurationController::Implementation ===============================
ConfigurationController::Implementation::Implementation (
......
......@@ -208,8 +208,8 @@ private:
/** When the called object has already been disposed this method throws
an exception and does not return.
*/
void ThrowIfDisposed (void) const
throw (css::lang::DisposedException);
void ThrowIfDisposed () const
throw (css::lang::DisposedException, css::uno::RuntimeException);
};
} } // end of namespace sd::framework
......
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