From 19d0d4e6297066fbcec75f4d9abff14ec52c72bf Mon Sep 17 00:00:00 2001 From: George Rhoten Date: Tue, 10 Jun 2003 22:45:47 +0000 Subject: [PATCH] ICU-2589 Sync some documentation with ucnv_err.h X-SVN-Rev: 12430 --- icu4c/source/common/unicode/ucnv.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/icu4c/source/common/unicode/ucnv.h b/icu4c/source/common/unicode/ucnv.h index fec083ce4a..b2ce4eb776 100644 --- a/icu4c/source/common/unicode/ucnv.h +++ b/icu4c/source/common/unicode/ucnv.h @@ -152,7 +152,7 @@ typedef enum { * Called when an error has occured in conversion to unicode, or on open/close of the callback (see reason). * @param context Pointer to the callback's private data * @param args Information about the conversion in progress - * @param codePoints Points to 'length' bytes of the concerned codepage sequence + * @param codeUnits Points to 'length' bytes of the concerned codepage sequence * @param length Size (in bytes) of the concerned codepage sequence * @param reason Defines the reason the callback was invoked * @see ucnv_setToUCallBack @@ -162,7 +162,7 @@ typedef enum { typedef void (U_EXPORT2 *UConverterToUCallback) ( const void* context, UConverterToUnicodeArgs *args, - const char *codePoints, + const char *codeUnits, int32_t length, UConverterCallbackReason reason, UErrorCode *);