diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-05-14 13:38:23 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-05-14 13:38:23 +0200 |
commit | c8695c6cce4aaa07ab2d615783d74037abb241b5 (patch) | |
tree | a611b43279dd7b70815becec34edd9c70fb2692f /unotools | |
parent | 8db493240a2caced1ab72a9e0fc87d39a6d3f12d (diff) |
Unify utl::TempFile ctors
Change-Id: I0a781a86804808cebf7756506d9299971c13e2ff
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/ucbhelper/tempfile.cxx | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/unotools/source/ucbhelper/tempfile.cxx b/unotools/source/ucbhelper/tempfile.cxx index 54799fd52f26..a62e68d2fbd3 100644 --- a/unotools/source/ucbhelper/tempfile.cxx +++ b/unotools/source/ucbhelper/tempfile.cxx @@ -272,13 +272,6 @@ TempFile::TempFile( const OUString* pParent, bool bDirectory ) aName = CreateTempName_Impl( pParent, true, bDirectory ); } -TempFile::TempFile( const OUString& rLeadingChars, const OUString* pExtension, const OUString* pParent, bool bDirectory) - : pStream( 0 ) - , bIsDirectory( bDirectory ) - , bKillingFileEnabled( false ) -{ - aName = lcl_createName(rLeadingChars, 0, true, pExtension, pParent, bDirectory, true); -} TempFile::TempFile( const OUString& rLeadingChars, bool _bStartWithZero, const OUString* pExtension, const OUString* pParent, bool bDirectory) : pStream( 0 ) , bIsDirectory( bDirectory ) |