summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-05-13 15:09:10 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-05-13 19:27:00 +0200
commit404e4d613ed62ee03b05db73b7e7783f5bccda12 (patch)
tree40030227f657af4ea74ae57df185f06dc9372a43 /unotools
parenta93bb27aa46c84410c8848a6118d5d63d47be92c (diff)
utl::TempFile::CreateTempName pParent is unused
Change-Id: Ide12ea21104af678dc541ed0e83970e7a2f5e694
Diffstat (limited to 'unotools')
-rw-r--r--unotools/source/ucbhelper/tempfile.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/unotools/source/ucbhelper/tempfile.cxx b/unotools/source/ucbhelper/tempfile.cxx
index 60536779c79f..be2b8a15fc6a 100644
--- a/unotools/source/ucbhelper/tempfile.cxx
+++ b/unotools/source/ucbhelper/tempfile.cxx
@@ -317,10 +317,10 @@ void lcl_createName(TempFile_Impl& _rImpl,const OUString& rLeadingChars, bool _b
}
}
-OUString TempFile::CreateTempName( const OUString* pParent )
+OUString TempFile::CreateTempName()
{
// get correct directory
- OUString aName = ConstructTempDir_Impl( pParent );
+ OUString aName = ConstructTempDir_Impl( 0 );
// get TempFile name with default naming scheme
CreateTempName_Impl( aName, false );