From 4f793077a4f677aa6a8d8321dc17fb8db4903c33 Mon Sep 17 00:00:00 2001 From: Jörg Barfurth Date: Fri, 9 Nov 2001 11:04:44 +0000 Subject: #86080# Cleanup of exception specifications for XML handling --- configmgr/source/misc/filehelper.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'configmgr') diff --git a/configmgr/source/misc/filehelper.cxx b/configmgr/source/misc/filehelper.cxx index 9b54d91e53aa..6f19f1873e4a 100644 --- a/configmgr/source/misc/filehelper.cxx +++ b/configmgr/source/misc/filehelper.cxx @@ -2,9 +2,9 @@ * * $RCSfile: filehelper.cxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: jb $ $Date: 2001-09-28 12:44:26 $ + * last change: $Author: jb $ $Date: 2001-11-09 12:04:44 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -94,7 +94,7 @@ namespace configmgr } // ----------------------------------------------------------------------------- - void FileHelper::removeFile(const rtl::OUString& _aURL) throw (io::IOException) + void FileHelper::removeFile(const rtl::OUString& _aURL) CFG_THROW1 (io::IOException) { FileBase::RC eError = File::remove(_aURL); if (eError != osl_File_E_None && @@ -111,7 +111,7 @@ namespace configmgr // ----------------------------------------------------------------------------- void FileHelper::replaceFile( - const rtl::OUString& _aToURL, const rtl::OUString &_aFromURL) throw (io::IOException) + const rtl::OUString& _aToURL, const rtl::OUString &_aFromURL) CFG_THROW1 (io::IOException) { FileHelper::removeFile(_aToURL); FileBase::RC eError = File::move(_aFromURL, _aToURL); @@ -137,7 +137,7 @@ namespace configmgr } // ----------------------------------------------------------------------------- - TimeValue FileHelper::getModifyTime(rtl::OUString const& _sURL) throw (io::IOException) + TimeValue FileHelper::getModifyTime(rtl::OUString const& _sURL) { TimeValue aTime = {0,0}; DirectoryItem aItem; -- cgit