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/filrset.hxx | |
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/filrset.hxx')
-rw-r--r-- | ucb/source/ucp/file/filrset.hxx | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/ucb/source/ucp/file/filrset.hxx b/ucb/source/ucp/file/filrset.hxx index 68523e8e06a5..358763f90507 100644 --- a/ucb/source/ucp/file/filrset.hxx +++ b/ucb/source/ucp/file/filrset.hxx @@ -2,9 +2,9 @@ * * $RCSfile: filrset.hxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: abi $ $Date: 2001-06-22 12:23:38 $ + * 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 @@ -176,7 +176,8 @@ namespace fileaccess { return m_aBaseDirectory; } - sal_Bool SAL_CALL CtorSuccess(); + sal_Int32 SAL_CALL CtorSuccess(); + sal_Int32 SAL_CALL getMinorError(); // XInterface virtual com::sun::star::uno::Any SAL_CALL @@ -728,6 +729,9 @@ namespace fileaccess { com::sun::star::uno::Reference< com::sun::star::ucb::XDynamicResultSetListener > m_xListener; sal_Bool m_bStatic, m_bFaked; + sal_Int32 m_nErrorCode; + sal_Int32 m_nMinorErrorCode; + // Methods sal_Bool SAL_CALL OneMore( void ) throw( com::sun::star::sdbc::SQLException, |