diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2022-10-24 21:05:09 +0200 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2022-10-24 22:20:54 +0200 |
commit | 0692cd8d199c31f761a4c7b0c16a94d3e195b2dc (patch) | |
tree | 5ec6aa3679d75f9be6b4627e947ec1304a7d34a1 /test/source | |
parent | b1e7f74fa9b351a132e90f78dece51124c3646cf (diff) |
CppunitTest_sd_svg_export_tests: inherit from UnoApiTest
Change-Id: Ib630949127d7087cddbb92737528690cafe9be26
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141782
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'test/source')
-rw-r--r-- | test/source/unoapi_test.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/source/unoapi_test.cxx b/test/source/unoapi_test.cxx index 4d06c47a9697..0cc8bf0e33cc 100644 --- a/test/source/unoapi_test.cxx +++ b/test/source/unoapi_test.cxx @@ -79,7 +79,7 @@ utl::TempFileNamed UnoApiTest::save(const OUString& rFilter) aTempFile.EnableKillingFile(); uno::Sequence aArgs{ comphelper::makePropertyValue("FilterName", rFilter) }; css::uno::Reference<frame::XStorable> xStorable(mxComponent, css::uno::UNO_QUERY_THROW); - xStorable->storeAsURL(aTempFile.GetURL(), aArgs); + xStorable->storeToURL(aTempFile.GetURL(), aArgs); mxComponent->dispose(); mxComponent.clear(); |