diff options
author | Michael Stahl <mstahl@redhat.com> | 2016-06-27 17:28:05 +0200 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-06-27 20:21:20 +0000 |
commit | f1dc76532638a5093b878919a3c7dd3aa5d22f09 (patch) | |
tree | be111cea7360b0605e9b10e0f18a357ceb171c85 | |
parent | f687c57465292e940f9e0d69aa2e4ee3376bd569 (diff) |
tdf#100495 sw: Exchange Database shouldn't delete the created odb file
(regression from f01f31201f9b26b3071ab25f9a5a3a0311ff7423)
Change-Id: Ie5b83a82711229bda045b7ef7a9167cfd873f616
(cherry picked from commit 5a042dad2779eefc76269e14b888bd84df590aac)
Reviewed-on: https://gerrit.libreoffice.org/26723
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | sw/source/uibase/dbui/dbmgr.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sw/source/uibase/dbui/dbmgr.cxx b/sw/source/uibase/dbui/dbmgr.cxx index bfe28a3b1840..abcf7072c41f 100644 --- a/sw/source/uibase/dbui/dbmgr.cxx +++ b/sw/source/uibase/dbui/dbmgr.cxx @@ -2698,7 +2698,6 @@ OUString SwDBManager::LoadAndRegisterDataSource(const DBConnURITypes type, const // Cannot embed, as embedded data source would need the URL of the parent document. OUString sHomePath(SvtPathOptions().GetWorkPath()); utl::TempFile aTempFile(sNewName, true, &sOutputExt, pDestDir ? pDestDir : &sHomePath); - aTempFile.EnableKillingFile(); OUString sTmpName = aTempFile.GetURL(); xStore->storeAsURL(sTmpName, uno::Sequence<beans::PropertyValue>()); } |