summaryrefslogtreecommitdiff
path: root/svx/source/xml/xmleohlp.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/xml/xmleohlp.cxx')
-rw-r--r--svx/source/xml/xmleohlp.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/svx/source/xml/xmleohlp.cxx b/svx/source/xml/xmleohlp.cxx
index 7fd88e492a77..a7392cdeefe0 100644
--- a/svx/source/xml/xmleohlp.cxx
+++ b/svx/source/xml/xmleohlp.cxx
@@ -68,7 +68,7 @@ class OutputStorageWrapper_Impl : public ::cppu::WeakImplHelper<XOutputStream>
{
std::mutex maMutex;
Reference < XOutputStream > xOut;
- TempFile aTempFile;
+ TempFileFast aTempFile;
bool bStreamClosed : 1;
SvStream* pStream;
@@ -87,7 +87,6 @@ OutputStorageWrapper_Impl::OutputStorageWrapper_Impl()
: bStreamClosed( false )
, pStream(nullptr)
{
- aTempFile.EnableKillingFile();
pStream = aTempFile.GetStream( StreamMode::READWRITE );
xOut = new OOutputStreamWrapper( *pStream );
}