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

coverity#1028261 Uncaught exception

Change-Id: I7dd08c182657084ffa635e1960f4d0def6d7a6bb
üst 3f0011fb
......@@ -167,7 +167,9 @@ public:
virtual void SAL_CALL setPropertyValue (
const ::rtl::OUString& rsPropertyName,
const cssu::Any& rValue)
throw(cssu::RuntimeException, std::exception) SAL_OVERRIDE;
throw (css::beans::UnknownPropertyException,
css::uno::RuntimeException,
std::exception) SAL_OVERRIDE;
virtual cssu::Any SAL_CALL getPropertyValue (
const ::rtl::OUString& rsPropertyName)
throw(css::beans::UnknownPropertyException,
......
......@@ -473,13 +473,12 @@ Reference<beans::XPropertySetInfo> SAL_CALL Theme::getPropertySetInfo (void)
return Reference<beans::XPropertySetInfo>(this);
}
void SAL_CALL Theme::setPropertyValue (
const ::rtl::OUString& rsPropertyName,
const cssu::Any& rValue)
throw(cssu::RuntimeException, std::exception)
throw (css::beans::UnknownPropertyException,
css::uno::RuntimeException,
std::exception)
{
PropertyNameToIdMap::const_iterator iId (maPropertyNameToIdMap.find(rsPropertyName));
if (iId == maPropertyNameToIdMap.end())
......@@ -520,9 +519,6 @@ void SAL_CALL Theme::setPropertyValue (
BroadcastPropertyChange(GetChangeListeners(eItem, false), aEvent);
}
Any SAL_CALL Theme::getPropertyValue (
const ::rtl::OUString& rsPropertyName)
throw(css::beans::UnknownPropertyException,
......
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