diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-01-29 13:15:22 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-01-29 13:15:22 +0000 |
commit | 41b8e583c2f988739526e64d66949b09389605b2 (patch) | |
tree | 383e6ece1a443c197a8301db2ada229c0cba9386 /sal/osl/w32/file.cxx | |
parent | ff29ba271c6b00f13f6453ea16785708e0e8b33d (diff) |
INTEGRATION: CWS networkrepair_SRC680 (1.14.100); FILE MERGED
2008/01/09 14:03:08 hro 1.14.100.1: #i82375# Mapped Win32 broken network connextion error code 0x3B to new OSL file error code
Diffstat (limited to 'sal/osl/w32/file.cxx')
-rw-r--r-- | sal/osl/w32/file.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sal/osl/w32/file.cxx b/sal/osl/w32/file.cxx index 384ed0a58beb..01f08fc740ea 100644 --- a/sal/osl/w32/file.cxx +++ b/sal/osl/w32/file.cxx @@ -4,9 +4,9 @@ * * $RCSfile: file.cxx,v $ * - * $Revision: 1.14 $ + * $Revision: 1.15 $ * - * last change: $Author: vg $ $Date: 2007-05-25 10:57:39 $ + * last change: $Author: rt $ $Date: 2008-01-29 14:15:22 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -296,7 +296,8 @@ namespace /* private */ { ERROR_FILENAME_EXCED_RANGE, osl_File_E_NOENT }, /* 206 */ { ERROR_NESTING_NOT_ALLOWED, osl_File_E_AGAIN }, /* 215 */ { ERROR_DIRECTORY, osl_File_E_NOENT }, /* 267 */ - { ERROR_NOT_ENOUGH_QUOTA, osl_File_E_NOMEM } /* 1816 */ + { ERROR_NOT_ENOUGH_QUOTA, osl_File_E_NOMEM }, /* 1816 */ + { ERROR_UNEXP_NET_ERR, osl_File_E_NETWORK } /* 59 */ }; /* The following two constants must be the minimum and maximum |