diff options
author | Noel Power <noel.power@suse.com> | 2013-03-08 12:42:20 +0000 |
---|---|---|
committer | Noel Power <noel.power@suse.com> | 2013-03-08 12:43:10 +0000 |
commit | 916d898209449bc88edfbf0d7a727bd0945124b7 (patch) | |
tree | 9e7be2d8981fc8446d66a6b5f82be5e63988ebb8 /tools | |
parent | e99d502df6561949fe34af42c7910d24455d3ba6 (diff) |
fix regression reading OleStorages ( over THRESHOLD size )
Change-Id: I26daefd898873037325c02d96018890ebc7cb1b6
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/fsys/tempfile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/fsys/tempfile.cxx b/tools/source/fsys/tempfile.cxx index 1a1da1ed3e38..ab80c70c0dfe 100644 --- a/tools/source/fsys/tempfile.cxx +++ b/tools/source/fsys/tempfile.cxx @@ -79,7 +79,7 @@ OUString ConstructTempDir_Impl( const String* pParent ) // if no parent or invalid parent : use system directory ::rtl::OUString& rTempNameBase_Impl = TempNameBase_Impl::get(); if ( rTempNameBase_Impl.isEmpty() ) - rTempNameBase_Impl = GetSystemTempDirPath_Impl(); + osl::FileBase::getTempDirURL( rTempNameBase_Impl ); aName = rTempNameBase_Impl; } |