Fix "a #Eek" to "an #Eek".

This commit is contained in:
Daiki Ueno
2010-06-04 14:46:57 +09:00
parent 66f6fae181
commit 8eb78751ea
4 changed files with 25 additions and 18 deletions

View File

@ -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)

View File

@ -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

View File

@ -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.

View File

@ -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
*