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

coverity#738451 Uncaught exception

Change-Id: I43473afc753a7d348273e58121f2446974d43957
üst 334e99c0
...@@ -244,7 +244,9 @@ public: ...@@ -244,7 +244,9 @@ public:
virtual OUString SAL_CALL getString() virtual OUString SAL_CALL getString()
throw (::com::sun::star::uno::RuntimeException, throw (::com::sun::star::uno::RuntimeException,
std::exception); std::exception);
virtual void SAL_CALL setString(const OUString& aString) throw( ::com::sun::star::uno::RuntimeException ); virtual void SAL_CALL setString(const OUString& aString)
throw (::com::sun::star::uno::RuntimeException,
std::exception);
//XScreenCursor //XScreenCursor
virtual sal_Bool SAL_CALL screenDown() virtual sal_Bool SAL_CALL screenDown()
......
...@@ -1461,7 +1461,8 @@ OUString SwXTextViewCursor::getString() ...@@ -1461,7 +1461,8 @@ OUString SwXTextViewCursor::getString()
return uRet; return uRet;
} }
void SwXTextViewCursor::setString(const OUString& aString) throw( uno::RuntimeException ) void SwXTextViewCursor::setString(const OUString& aString)
throw (uno::RuntimeException, std::exception)
{ {
SolarMutexGuard aGuard; SolarMutexGuard aGuard;
if(m_pView) if(m_pView)
......
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