summaryrefslogtreecommitdiffstats
path: root/unotools
diff options
context:
space:
mode:
Diffstat (limited to 'unotools')
-rw-r--r--unotools/inc/unotools/tempfile.hxx1
-rw-r--r--unotools/source/ucbhelper/tempfile.cxx12
2 files changed, 0 insertions, 13 deletions
diff --git a/unotools/inc/unotools/tempfile.hxx b/unotools/inc/unotools/tempfile.hxx
index 3565396dd612..2030b1ab0791 100644
--- a/unotools/inc/unotools/tempfile.hxx
+++ b/unotools/inc/unotools/tempfile.hxx
@@ -154,7 +154,6 @@ public:
It is not a URL because alle URLs must be "UCB compatible", so there may be no suitable URL at all.
*/
static String SetTempNameBaseDirectory( const String &rBaseName );
- static String GetTempNameBaseDirectory();
};
}
diff --git a/unotools/source/ucbhelper/tempfile.cxx b/unotools/source/ucbhelper/tempfile.cxx
index 99f0b85d68b8..33a3ca6fb8f4 100644
--- a/unotools/source/ucbhelper/tempfile.cxx
+++ b/unotools/source/ucbhelper/tempfile.cxx
@@ -484,18 +484,6 @@ String TempFile::SetTempNameBaseDirectory( const String &rBaseName )
return aTmp;
}
-
-String TempFile::GetTempNameBaseDirectory()
-{
- const ::rtl::OUString &rTempNameBase_Impl = TempNameBase_Impl::get();
- if ( !rTempNameBase_Impl.getLength() )
- return String();
-
- rtl::OUString aTmp;
- FileBase::getSystemPathFromFileURL( rTempNameBase_Impl, aTmp );
- return aTmp;
-}
-
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */