From a41775b4290d4ae83e14663d8186c6b1dbadab9c Mon Sep 17 00:00:00 2001 From: Markus Scherer Date: Wed, 18 Jul 2012 21:37:13 +0000 Subject: [PATCH] ICU-9432 fix value of UDATA_FILE_ACCESS_COUNT X-SVN-Rev: 32041 --- icu4c/source/common/unicode/udata.h | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/icu4c/source/common/unicode/udata.h b/icu4c/source/common/unicode/udata.h index 47edbd86c9f..f9b4cd4423e 100644 --- a/icu4c/source/common/unicode/udata.h +++ b/icu4c/source/common/unicode/udata.h @@ -1,7 +1,7 @@ /* ****************************************************************************** * -* Copyright (C) 1999-2010, International Business Machines +* Copyright (C) 1999-2012, International Business Machines * Corporation and others. All Rights Reserved. * ****************************************************************************** @@ -383,17 +383,18 @@ udata_setAppData(const char *packageName, const void *data, UErrorCode *err); * @stable ICU 3.4 */ typedef enum UDataFileAccess { - /** ICU looks for data in single files first, then in packages. (default) */ + /** ICU looks for data in single files first, then in packages. (default) @stable ICU 3.4 */ UDATA_FILES_FIRST, - /** ICU only loads data from packages, not from single files. */ + /** An alias for the default access mode. @stable ICU 3.4 */ + UDATA_DEFAULT_ACCESS = UDATA_FILES_FIRST, + /** ICU only loads data from packages, not from single files. @stable ICU 3.4 */ UDATA_ONLY_PACKAGES, /** ICU loads data from packages first, and only from single files - if the data cannot be found in a package. */ + if the data cannot be found in a package. @stable ICU 3.4 */ UDATA_PACKAGES_FIRST, - /** ICU does not access the file system for data loading. */ + /** ICU does not access the file system for data loading. @stable ICU 3.4 */ UDATA_NO_FILES, - /** An alias for the default access mode. */ - UDATA_DEFAULT_ACCESS = UDATA_FILES_FIRST, + /** Number of real UDataFileAccess values. @stable ICU 3.4 */ UDATA_FILE_ACCESS_COUNT } UDataFileAccess;