Kaydet (Commit) 9c1b4e04 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1038484 Uncaught exception

Change-Id: I0067dfd9b020dc02d6611e37ac49d585b46ec42d
üst e30c4121
......@@ -252,14 +252,10 @@ void SAL_CALL ConfigurationController::notifyEvent (
mpImplementation->mpBroadcaster->NotifyListeners(rEvent);
}
//----- XConfigurationController ----------------------------------------------
void SAL_CALL ConfigurationController::lock (void)
throw (RuntimeException)
void SAL_CALL ConfigurationController::lock()
throw (RuntimeException, std::exception)
{
OSL_ASSERT(mpImplementation.get()!=NULL);
OSL_ASSERT(mpImplementation->mpConfigurationUpdater.get()!=NULL);
......
......@@ -86,8 +86,9 @@ public:
// XConfigurationController
virtual void SAL_CALL lock (void)
throw (css::uno::RuntimeException);
virtual void SAL_CALL lock()
throw (css::uno::RuntimeException,
std::exception);
virtual void SAL_CALL unlock (void)
throw (css::uno::RuntimeException);
......
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