diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2022-09-17 15:22:27 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-09-18 12:00:51 +0200 |
commit | 898ba5beb4db4ff30cc4409da829c3d79907f37e (patch) | |
tree | 9128a742c7f427e8fdc8fa8a3a5f4d4a31fc8bae /sw/source/ui/dbui/mmlayoutpage.cxx | |
parent | ca3d526a24390df6158bf233fa63e19f5f4b1f4b (diff) |
use more string_view in utl::TempFile
Change-Id: I151c66479053b9b5b7699a4938a622b4320aeaa0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140104
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/source/ui/dbui/mmlayoutpage.cxx')
-rw-r--r-- | sw/source/ui/dbui/mmlayoutpage.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/dbui/mmlayoutpage.cxx b/sw/source/ui/dbui/mmlayoutpage.cxx index 86d705b2bac6..10845d1aa67a 100644 --- a/sw/source/ui/dbui/mmlayoutpage.cxx +++ b/sw/source/ui/dbui/mmlayoutpage.cxx @@ -95,7 +95,7 @@ SwMailMergeLayoutPage::SwMailMergeLayoutPage(weld::Container* pPage, SwMailMerge //creating with extension is not supported by a static method :-( OUString const sExt( comphelper::string::stripStart(pSfxFlt->GetDefaultExtension(),'*')); - utl::TempFile aTempFile( u"", true, &sExt ); + utl::TempFile aTempFile( u"", true, sExt ); m_sExampleURL = aTempFile.GetURL(); aTempFile.EnableKillingFile(); } |