diff options
author | Michael Stahl <Michael.Stahl@cib.de> | 2019-01-29 13:40:21 +0100 |
---|---|---|
committer | Michael Stahl <Michael.Stahl@cib.de> | 2019-01-29 17:02:17 +0100 |
commit | 3cacdf5b0f1a6285370d5b06ddec9bce770ea603 (patch) | |
tree | bd4fe76fef2f8790120fd7196347c049d920b323 /include | |
parent | 55013f566d540b910a73d6403809cd236f75636c (diff) |
sc: fix CppunitTest_sc_ddelinkobj to copy its test document
XRefreshable::testRefreshListener() fails on read-only filesystem
because the ScDDELinksObj.ods cannot be loaded read-write.
It is loaded read-write since commit
5b2794e27a81f8078cc251580ca59cc47807c7a0.
Change-Id: I27b954b216acd3d138ade0d3f1b21fedd2f74fb1
Reviewed-on: https://gerrit.libreoffice.org/67071
Tested-by: Jenkins
Reviewed-by: Michael Stahl <Michael.Stahl@cib.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/test/sheet/xddelink.hxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/test/sheet/xddelink.hxx b/include/test/sheet/xddelink.hxx index fa974ea321d8..854462a0dc1c 100644 --- a/include/test/sheet/xddelink.hxx +++ b/include/test/sheet/xddelink.hxx @@ -27,7 +27,13 @@ public: void testGetTopic(); protected: + explicit XDDELink(OUString const& rURL) + : m_URL(rURL) + { + } ~XDDELink() {} + + OUString const m_URL; }; } // namespace apitest |