diff options
author | Andreas Bille <abi@openoffice.org> | 2001-06-29 14:00:12 +0000 |
---|---|---|
committer | Andreas Bille <abi@openoffice.org> | 2001-06-29 14:00:12 +0000 |
commit | 5ef2de612d973bc747ff4a107e4e4c4ecb273429 (patch) | |
tree | 90705e0a7717a8bc1739d7105c56675ff226983c /ucb/source/ucp/file/prov.cxx | |
parent | b9bf57b7e160bda52ad50880465c521a2dd4d9fb (diff) |
Some new files because others are getting to big.
Error codes for insert,open and partially transfer.
Exception specifications to nothrow for methods in class shell.
installation of error codes in the taskmanager
Diffstat (limited to 'ucb/source/ucp/file/prov.cxx')
-rw-r--r-- | ucb/source/ucp/file/prov.cxx | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/ucb/source/ucp/file/prov.cxx b/ucb/source/ucp/file/prov.cxx index d202cea2f2b5..10b04fde50ac 100644 --- a/ucb/source/ucp/file/prov.cxx +++ b/ucb/source/ucp/file/prov.cxx @@ -2,9 +2,9 @@ * * $RCSfile: prov.cxx,v $ * - * $Revision: 1.21 $ + * $Revision: 1.22 $ * - * last change: $Author: abi $ $Date: 2001-06-22 11:21:16 $ + * last change: $Author: abi $ $Date: 2001-06-29 15:00:12 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -88,6 +88,9 @@ #ifndef _COM_SUN_STAR_BEANS_PROPERTYSTATE_HPP_ #include <com/sun/star/beans/PropertyState.hpp> #endif +#ifndef _FILGLOB_HXX_ +#include "filglob.hxx" +#endif #ifndef _FILID_HXX_ #include "filid.hxx" #endif @@ -210,17 +213,6 @@ extern "C" void * SAL_CALL component_getFactory( /****************************************************************************/ -oslFileError getResolvedURL(rtl_uString* ustrPath, rtl_uString** pustrResolvedURL) -{ -#ifdef TF_FILEURL - /* TODO: If file exist and is a link get link target URL */ - rtl_uString_assign( pustrResolvedURL, ustrPath ); -#else - rtl_uString_assign( pustrResolvedURL, ustrPath ); -#endif - - return osl_File_E_None; -} static bool moreLength( const shell::MountPoint& m1, const shell::MountPoint& m2 ) { |