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

coverity#737507 Uncaught exception

Change-Id: Id035849f94bfb5e6ba7f5463a6a548bf88b77e85
üst 42d46144
...@@ -511,7 +511,9 @@ public: ...@@ -511,7 +511,9 @@ public:
virtual ~ScDataPilotFieldObj(); virtual ~ScDataPilotFieldObj();
// XNamed // XNamed
virtual OUString SAL_CALL getName() throw(::com::sun::star::uno::RuntimeException); virtual OUString SAL_CALL getName()
throw (::com::sun::star::uno::RuntimeException,
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);
......
...@@ -1845,7 +1845,8 @@ ScDataPilotFieldObj::~ScDataPilotFieldObj() ...@@ -1845,7 +1845,8 @@ ScDataPilotFieldObj::~ScDataPilotFieldObj()
// XNamed // XNamed
OUString SAL_CALL ScDataPilotFieldObj::getName() throw(RuntimeException) OUString SAL_CALL ScDataPilotFieldObj::getName()
throw (RuntimeException, std::exception)
{ {
SolarMutexGuard aGuard; SolarMutexGuard aGuard;
OUString aName; OUString aName;
......
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