summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-03-23 22:44:00 +0100
committerMichael Stahl <mstahl@redhat.com>2013-03-23 23:02:56 +0100
commit2098b720dd9cdfef5b214802f0b37f49ad42982c (patch)
treeb88ccb640804da75b13d2e75f00bb5ed946bf7b1 /tools
parent1a777d4387589d36918d4f71cd7413fc79d518c4 (diff)
tools: TempFile: create a file in ctor, not a directory
related: fdo#62617 (regression from a548924aece3dc99b2aa36b5c9b0fa52de9951ae) Change-Id: Ie29a22e2bacc5fc31c9a5d1c33c01c3b6f22fe49
Diffstat (limited to 'tools')
-rw-r--r--tools/source/fsys/tempfile.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/fsys/tempfile.cxx b/tools/source/fsys/tempfile.cxx
index bb68187cf563..24557f5e4366 100644
--- a/tools/source/fsys/tempfile.cxx
+++ b/tools/source/fsys/tempfile.cxx
@@ -127,7 +127,7 @@ TempFile::TempFile()
pImp->aName = ConstructTempDir_Impl();
// get TempFile with default naming scheme
- CreateTempName_Impl( pImp->aName, sal_True );
+ CreateTempName_Impl( pImp->aName, sal_True, false );
}
TempFile::TempFile( const String& rLeadingChars, const String* pExtension )