diff --git a/configmgr/source/inc/filehelper.hxx b/configmgr/source/inc/filehelper.hxx index 2ef9a7ac9fbb..97562c115457 100644 --- a/configmgr/source/inc/filehelper.hxx +++ b/configmgr/source/inc/filehelper.hxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: filehelper.hxx,v $ - * $Revision: 1.13 $ + * $Revision: 1.14 $ * * This file is part of OpenOffice.org. * @@ -50,9 +50,6 @@ namespace configmgr /// delimiter used in URLs and ConfPath static const ::sal_Unicode delimiter = sal_Unicode('/'); - /// string representation of the delimiter - const rtl::OUString& delimiterAsString(); - /// Tests if the file exists. bool fileExists(rtl::OUString const& _sFileURL); @@ -101,10 +98,6 @@ namespace configmgr */ void replaceFile(const rtl::OUString& _aToURL, const rtl::OUString &_aFromURL) CFG_THROW1(io::IOException); - /** removes a file specified by _aURL. Ignores the case of a non-existing file. - */ - void removeFile(const rtl::OUString& _aURL) CFG_THROW1(io::IOException); - /** removes a file specified by _aURL. Ignores the case of a non-existing file. */ bool tryToRemoveFile(const rtl::OUString& _aURL, bool tryBackupFirst); @@ -113,11 +106,6 @@ namespace configmgr */ rtl::OUString createOSLErrorString(osl::FileBase::RC eError); - /** determines the modification time of a directory entry specified by a URL. - @return the TimeValue of the last modification, if the file exists, otherwise a TimeValue(0,0). - */ - TimeValue getModifyTime(rtl::OUString const& _aNormalizedFilename); - /** determines the status of a directory entry specified by a URL. @return the Size of the file in bytes and the TimeValue of the last modification, if the file exists, otherwise 0 and a TimeValue(0,0).