diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2022-09-21 20:54:00 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-09-29 09:11:18 +0200 |
commit | 4b95451f859bac8e05956ce12df17f1ee410032d (patch) | |
tree | 2ebe03c8ecbba3c9179d33c346774e037fcfc224 /include/unotest | |
parent | a08468c1a5255d3fb04cd8a0dc627acdea40426a (diff) |
split utl::TempFile into fast and named variants
which makes it easier to know what each variant requires
to stay on it's happy path
Change-Id: I3275a2543573367714bc78092e882f6535507285
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140469
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/unotest')
-rw-r--r-- | include/unotest/macros_test.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/unotest/macros_test.hxx b/include/unotest/macros_test.hxx index 8773a6c99568..b2ac283e4f7d 100644 --- a/include/unotest/macros_test.hxx +++ b/include/unotest/macros_test.hxx @@ -37,7 +37,7 @@ class Directories; } namespace utl { -class TempFile; +class TempFileNamed; } namespace com::sun::star::security @@ -92,7 +92,7 @@ public: const css::uno::Sequence<css::beans::PropertyValue>& rPropertyValues); /// Opens rStreamName from rTempFile, assuming it's a ZIP storage. - static std::unique_ptr<SvStream> parseExportStream(const utl::TempFile& rTempFile, + static std::unique_ptr<SvStream> parseExportStream(const utl::TempFileNamed& rTempFile, const OUString& rStreamName); void setUpNssGpg(const test::Directories& rDirectories, const OUString& rTestName); |