Fix coding style.

This commit is contained in:
Daiki Ueno
2010-06-22 16:29:24 +09:00
parent a388d9e6e1
commit 9aabdc0812
2 changed files with 13 additions and 9 deletions

View File

@ -169,8 +169,10 @@ create_key (EekXkbLayout *layout,
outline->num_points = xkboutline->num_points; outline->num_points = xkboutline->num_points;
outline->points = g_new0 (EekPoint, outline->num_points); outline->points = g_new0 (EekPoint, outline->num_points);
for (i = 0; i < xkboutline->num_points; i++) { for (i = 0; i < xkboutline->num_points; i++) {
outline->points[i].x = xkb_to_pixmap_coord(layout, xkboutline->points[i].x); outline->points[i].x =
outline->points[i].y = xkb_to_pixmap_coord(layout, xkboutline->points[i].y); xkb_to_pixmap_coord(layout, xkboutline->points[i].x);
outline->points[i].y =
xkb_to_pixmap_coord(layout, xkboutline->points[i].y);
} }
} }
g_hash_table_insert (priv->outline_hash, xkbshape, outline); g_hash_table_insert (priv->outline_hash, xkbshape, outline);
@ -418,7 +420,8 @@ eek_xkb_layout_real_get_group (EekLayout *self)
EekXkbLayoutPrivate *priv = EEK_XKB_LAYOUT_GET_PRIVATE (self); EekXkbLayoutPrivate *priv = EEK_XKB_LAYOUT_GET_PRIVATE (self);
XkbStateRec state; XkbStateRec state;
g_return_val_if_fail (XkbGetState (priv->display, XkbUseCoreKbd, &state), -1); g_return_val_if_fail (XkbGetState (priv->display, XkbUseCoreKbd, &state),
-1);
return state.group; return state.group;
} }
@ -618,9 +621,9 @@ eek_xkb_layout_set_names (EekXkbLayout *layout, XkbComponentNamesRec *names)
* @geometry: geometry component name * @geometry: geometry component name
* *
* Set the XKB component names to @layout. This function is merely a * Set the XKB component names to @layout. This function is merely a
* wrapper around eek_xkb_layout_set_names() to avoid passing an * wrapper around eek_xkb_layout_set_names() to avoid passing a
* XkbComponentNamesRec pointer (which is not currently available in * pointer of XkbComponentNamesRec, which is not currently available
* the gobject-introspection repository). * in the gobject-introspection repository.
* *
* Returns: %TRUE if the component name is successfully set, %FALSE otherwise * Returns: %TRUE if the component name is successfully set, %FALSE otherwise
*/ */
@ -634,6 +637,7 @@ eek_xkb_layout_set_names_full (EekXkbLayout *layout,
const gchar *geometry) const gchar *geometry)
{ {
XkbComponentNamesRec names; XkbComponentNamesRec names;
names.keymap = keymap; names.keymap = keymap;
names.keycodes = keycodes; names.keycodes = keycodes;
names.types = types; names.types = types;

View File

@ -355,9 +355,9 @@ eek_xkl_layout_set_config (EekXklLayout *layout,
* *
* Reconfigure @layout with @model, @layouts, @variants, and @options. * Reconfigure @layout with @model, @layouts, @variants, and @options.
* This function is merely a wrapper around * This function is merely a wrapper around
* eek_xkl_layout_set_config() to avoid passing an XklConfigRec * eek_xkl_layout_set_config() to avoid passing a pointer of
* pointer (which is not currently available in the * XklConfigRec, which is not currently available in the
* gobject-introspection repository). * gobject-introspection repository.
* *
* Returns: %TRUE if the component name is successfully set, %FALSE otherwise * Returns: %TRUE if the component name is successfully set, %FALSE otherwise
*/ */