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

coverity#737508 Uncaught exception

Change-Id: I100bd99fdbf2929214f89baac962d74cb6a530a6
üst f10e4ce1
...@@ -514,8 +514,9 @@ public: ...@@ -514,8 +514,9 @@ public:
virtual OUString SAL_CALL getName() virtual OUString SAL_CALL getName()
throw (::com::sun::star::uno::RuntimeException, throw (::com::sun::star::uno::RuntimeException,
std::exception); std::exception);
virtual void SAL_CALL setName( const OUString& aName ) virtual void SAL_CALL setName(const OUString& aName)
throw(::com::sun::star::uno::RuntimeException); throw (::com::sun::star::uno::RuntimeException,
std::exception);
// XPropertySet // XPropertySet
virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo >
......
...@@ -1865,7 +1865,8 @@ OUString SAL_CALL ScDataPilotFieldObj::getName() ...@@ -1865,7 +1865,8 @@ OUString SAL_CALL ScDataPilotFieldObj::getName()
return aName; return aName;
} }
void SAL_CALL ScDataPilotFieldObj::setName( const OUString& rName ) throw(RuntimeException) void SAL_CALL ScDataPilotFieldObj::setName(const OUString& rName)
throw (RuntimeException, std::exception)
{ {
SolarMutexGuard aGuard; SolarMutexGuard aGuard;
ScDPObject* pDPObj = 0; ScDPObject* pDPObj = 0;
......
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