diff --git a/eek/eek-keyboard.h b/eek/eek-keyboard.h index 569865c6..265e92a1 100644 --- a/eek/eek-keyboard.h +++ b/eek/eek-keyboard.h @@ -65,6 +65,7 @@ struct _EekKeyboard * @key_released: class handler for #EekKeyboard::key-released signal * @key_locked: class handler for #EekKeyboard::key-locked signal * @key_unlocked: class handler for #EekKeyboard::key-unlocked signal + * @key_cancelled: class handler for #EekKeyboard::key-cancelled signal */ struct _EekKeyboardClass { diff --git a/eekboard/eekboard-context.c b/eekboard/eekboard-context.c index 3f5832bd..09dd1dbb 100644 --- a/eekboard/eekboard-context.c +++ b/eekboard/eekboard-context.c @@ -598,7 +598,7 @@ eekboard_context_press_keycode (EekboardContext *context, /** * eekboard_context_release_keycode: - * @Context: an #EekboardContext + * @context: an #EekboardContext * @keycode: keycode number * @cancellable: a #GCancellable * @@ -606,8 +606,8 @@ eekboard_context_press_keycode (EekboardContext *context, */ void eekboard_context_release_keycode (EekboardContext *context, - guint keycode, - GCancellable *cancellable) + guint keycode, + GCancellable *cancellable) { EekboardContextPrivate *priv; diff --git a/eekboard/eekboard-context.h b/eekboard/eekboard-context.h index 42788608..64c99f5a 100644 --- a/eekboard/eekboard-context.h +++ b/eekboard/eekboard-context.h @@ -56,6 +56,7 @@ struct _EekboardContext { * @enabled: class handler for #EekboardContext::enabled signal * @disabled: class handler for #EekboardContext::disabled signal * @key_pressed: class handler for #EekboardContext::key-pressed signal + * @destroyed: class handler for #EekboardContext::destroyed signal */ struct _EekboardContextClass { /*< private >*/