From 8eb78751eaab3f7d3b92967784ffedeec14aeb54 Mon Sep 17 00:00:00 2001 From: Daiki Ueno Date: Fri, 4 Jun 2010 14:46:57 +0900 Subject: [PATCH] Fix "a #Eek" to "an #Eek". --- eek/eek-clutter-key.c | 7 +++++++ eek/eek-key.c | 8 ++++---- eek/eek-keyboard.c | 12 ++++++------ eek/eek-section.c | 16 ++++++++-------- 4 files changed, 25 insertions(+), 18 deletions(-) diff --git a/eek/eek-clutter-key.c b/eek/eek-clutter-key.c index 30c5adf9..4c6a8389 100644 --- a/eek/eek-clutter-key.c +++ b/eek/eek-clutter-key.c @@ -536,6 +536,13 @@ eek_clutter_key_create_texture (EekClutterKey *key) return texture; } +/** + * eek_clutter_key_set_texture: + * @key: an #EekClutterKey + * @texture: an #ClutterActor + * + * Set the background texture of @key to @texture. + */ void eek_clutter_key_set_texture (EekClutterKey *key, ClutterActor *texture) diff --git a/eek/eek-key.c b/eek/eek-key.c index 7c073d4f..a897a9f5 100644 --- a/eek/eek-key.c +++ b/eek/eek-key.c @@ -298,7 +298,7 @@ eek_key_get_outline (EekKey *key) /** * eek_key_set_bounds: - * @key: a #EekKey + * @key: an #EekKey * @bounds: bounding box of @key * * Set the bounding box of @key to @bounds. @@ -316,7 +316,7 @@ eek_key_set_bounds (EekKey *key, /** * eek_key_get_bounds: - * @key: a #EekKey + * @key: an #EekKey * @bounds: the bounding box of @key * * Get the bounding box of @key. @@ -334,7 +334,7 @@ eek_key_get_bounds (EekKey *key, /** * eek_key_set_keysym_index: - * @key: a #EekKey + * @key: an #EekKey * @group: row index of the symbol matrix #EekKey:keysyms * @level: column index of the symbol matrix #EekKey:keysyms * @@ -354,7 +354,7 @@ eek_key_set_keysym_index (EekKey *key, /** * eek_key_get_keysym_index: - * @key: a #EekKey + * @key: an #EekKey * @group: a pointer to row index of the symbol matrix #EekKey:keysyms * to be stored * @level: a pointer to column index of the symbol matrix diff --git a/eek/eek-keyboard.c b/eek/eek-keyboard.c index 281ad874..9c40b6c4 100644 --- a/eek/eek-keyboard.c +++ b/eek/eek-keyboard.c @@ -82,7 +82,7 @@ eek_keyboard_get_type (void) /** * eek_keyboard_set_bounds: - * @keyboard: a #EekKeyboard + * @keyboard: an #EekKeyboard * @bounds: bounding box of the keyboard * * Set the bounding box of @keyboard to @bounds. @@ -100,7 +100,7 @@ eek_keyboard_set_bounds (EekKeyboard *keyboard, /** * eek_keyboard_get_bounds: - * @keyboard: a #EekKeyboard + * @keyboard: an #EekKeyboard * @bounds: the bounding box of @keyboard * * Get the bounding box of @keyboard. @@ -118,7 +118,7 @@ eek_keyboard_get_bounds (EekKeyboard *keyboard, /** * eek_keyboard_create_section: - * @keyboard: a #EekKeyboard + * @keyboard: an #EekKeyboard * @name: name of the section * @angle: rotation angle of the section * @bounds: bounding box of the section @@ -140,7 +140,7 @@ eek_keyboard_create_section (EekKeyboard *keyboard, /** * eek_keyboard_foreach_section: - * @keyboard: a #EekKeyboard + * @keyboard: an #EekKeyboard * @func: a callback of #GFunc * @user_data: a pointer to an object passed to @func * @@ -160,8 +160,8 @@ eek_keyboard_foreach_section (EekKeyboard *keyboard, /** * eek_keyboard_set_layout: - * @keyboard: a #EekKeyboard - * @layout: a #EekLayout + * @keyboard: an #EekKeyboard + * @layout: an #EekLayout * * Set the layout of @keyboard to @layout. This actually turns * @keyboard to be ready to be drawn on the screen. diff --git a/eek/eek-section.c b/eek/eek-section.c index 2203de49..d8ee95fc 100644 --- a/eek/eek-section.c +++ b/eek/eek-section.c @@ -131,7 +131,7 @@ eek_section_get_type (void) /** * eek_section_set_dimensions: - * @section: a #EekSection + * @section: an #EekSection * @columns: the number of columns in @section * @rows: the number of rows in @section * @@ -150,7 +150,7 @@ eek_section_set_dimensions (EekSection *section, /** * eek_section_get_dimensions: - * @section: a #EekSection + * @section: an #EekSection * @columns: a pointer where the number of columns in @section is stored * @rows: a pointer where the number of rows in @section is stored * @@ -169,7 +169,7 @@ eek_section_get_dimensions (EekSection *section, /** * eek_section_set_angle: - * @section: a #EekSection + * @section: an #EekSection * @angle: rotation angle of @section * * Set the rotation angle of @section to @angle. @@ -186,7 +186,7 @@ eek_section_set_angle (EekSection *section, /** * eek_section_get_angle: - * @section: a #EekSection + * @section: an #EekSection * * Get the rotation angle of @section. */ @@ -201,7 +201,7 @@ eek_section_get_angle (EekSection *section) /** * eek_section_set_bounds: - * @section: a #EekSection + * @section: an #EekSection * @bounds: bounding box of @section * * Set the bounding box of @section to @bounds. @@ -218,7 +218,7 @@ eek_section_set_bounds (EekSection *section, /** * eek_section_get_bounds: - * @section: a #EekSection + * @section: an #EekSection * @bounds: the bounding box of @section * * Get the bounding box of @section. @@ -235,7 +235,7 @@ eek_section_get_bounds (EekSection *section, /** * eek_section_create_key: - * @section: a #EekSection + * @section: an #EekSection * @name: name of the key * @keysyms: symbol matrix of the key * @num_groups: number of rows in the @keysyms @@ -278,7 +278,7 @@ eek_section_create_key (EekSection *section, /** * eek_section_foreach_key: - * @section: a #EekSection + * @section: an #EekSection * @func: a callback of #GFunc * @user_data: a pointer to an object passed to @func *