From 60d2cebe21bb21848d4b2d5c07a6a92cce031483 Mon Sep 17 00:00:00 2001 From: Eric Mader Date: Tue, 15 Jun 2004 21:25:07 +0000 Subject: [PATCH] ICU-3820 fix doxygen warnings. X-SVN-Rev: 15881 --- icu4c/source/layout/LEGlyphStorage.h | 4 ++-- icu4c/source/layout/LayoutEngine.h | 9 ++++----- icu4c/source/layoutex/layout/ParagraphLayout.h | 2 +- icu4c/source/layoutex/layout/RunArrays.h | 2 +- 4 files changed, 8 insertions(+), 9 deletions(-) diff --git a/icu4c/source/layout/LEGlyphStorage.h b/icu4c/source/layout/LEGlyphStorage.h index e2228af323d..a3de1321439 100644 --- a/icu4c/source/layout/LEGlyphStorage.h +++ b/icu4c/source/layout/LEGlyphStorage.h @@ -193,7 +193,7 @@ public: * X and Y position for each glyph, plus an extra X and Y for the * advance of the last glyph. * - * @param glyphs - the destiniation position array + * @param positions - the destiniation position array * @param success - set to an error code if the operation fails * * @draft ICU 3.0 @@ -482,7 +482,7 @@ public: /** * ICU "poor man's RTTI", returns a UClassID for the actual class. * - * @darft ICU 3.0 + * @draft ICU 3.0 */ virtual inline UClassID getDynamicClassID() const { return getStaticClassID(); } diff --git a/icu4c/source/layout/LayoutEngine.h b/icu4c/source/layout/LayoutEngine.h index 2ef750317c5..07116884309 100644 --- a/icu4c/source/layout/LayoutEngine.h +++ b/icu4c/source/layout/LayoutEngine.h @@ -103,7 +103,7 @@ protected: * * @param fontInstance - the font for the text * @param scriptCode - the script for the text - * @param langaugeCode - the language for the text + * @param languageCode - the language for the text * * @see LEFontInstance * @see ScriptAndLanguageTags.h @@ -136,7 +136,7 @@ protected: * @param max - the number of characters in the input context * @param rightToLeft - TRUE if the characters are in a right to left directional run * @param outChars - the output character array, if different from the input - * @param glyphStorege - the object that holds the per-glyph storage. The character index array may be set. + * @param glyphStorage - the object that holds the per-glyph storage. The character index array may be set. * @param success - set to an error code if the operation fails * * @return the output character count (input character count if no change) @@ -209,7 +209,7 @@ protected: * * @internal */ - virtual void adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool /*reverse*/, LEGlyphStorage &glyphStorage, LEErrorCode &success); + virtual void adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, LEGlyphStorage &glyphStorage, LEErrorCode &success); /** * This method gets a table from the font associated with @@ -257,7 +257,6 @@ protected: * glyphs to be zero, which is required for proper selection and highlighting. * * @param glyphStorage - the object containing the per-glyph storage. The positions array will be modified. - * @param reverse - TRUE if the glyph array has been reordered * @param markFilter - used to identify mark glyphs * @param success - output parameter set to an error code if the operation fails * @@ -430,7 +429,7 @@ public: * * @param fontInstance - the font of the text * @param scriptCode - the script of the text - * @param langaugeCode - the language of the text + * @param languageCode - the language of the text * @param success - output parameter set to an error code if the operation fails * * @return a LayoutEngine which can layout text in the given font. diff --git a/icu4c/source/layoutex/layout/ParagraphLayout.h b/icu4c/source/layoutex/layout/ParagraphLayout.h index 91d3d1af5c9..7aeb54d3e62 100644 --- a/icu4c/source/layoutex/layout/ParagraphLayout.h +++ b/icu4c/source/layoutex/layout/ParagraphLayout.h @@ -183,7 +183,7 @@ public: * a table which maps indices into the glyph array to indices into * the original character array which was used to create the paragraph. * - * These objects are only created by ParagraphLayout::Line objects, + * These objects are only created by ParagraphLayout::Line objects, * so their constructors and destructors are private. * * @see ParagraphLayout::Line diff --git a/icu4c/source/layoutex/layout/RunArrays.h b/icu4c/source/layoutex/layout/RunArrays.h index 5c6ea980964..f745bd54de1 100644 --- a/icu4c/source/layoutex/layout/RunArrays.h +++ b/icu4c/source/layoutex/layout/RunArrays.h @@ -67,7 +67,7 @@ public: * * @draft ICU 2.6 */ - RunArray(le_int32 initalCapacity); + RunArray(le_int32 initialCapacity); /** * The destructor; virtual so that subclass destructors are invoked as well.