Kaydet (Commit) 8bd3d06d authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Throw RuntimeException with message

...seen JunitTest_sc_unoapi_4 fail once in
sc.ScHeaderFooterTextCursor::com::sun::star::text::XTextRange with an empty
RuntimeException when calling some remote getString.

Change-Id: Id631feffce810b40825fe0fa49d8f1846f045033
üst 055fd587
......@@ -332,7 +332,8 @@ OUString SAL_CALL ScHeaderFooterTextObj::getString() throw(uno::RuntimeException
uno::Reference<css::sheet::XHeaderFooterContent> xContentObj = aTextData.GetContentObj();
if (!xContentObj.is())
throw css::uno::RuntimeException("");
throw css::uno::RuntimeException(
"ScHeaderFooterTextObj::getString: no ContentObj");
rtl::Reference<ScHeaderFooterContentObj> pObj = ScHeaderFooterContentObj::getImplementation(xContentObj);
......
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