Doc and typo fix for eekboard_context_set_fullscreen().

This commit is contained in:
Daiki Ueno
2011-03-08 11:27:20 +09:00
parent cbdd0fd2ba
commit 2bbc65958a

View File

@ -748,6 +748,14 @@ eekboard_context_is_enabled (EekboardContext *context)
return priv->enabled; return priv->enabled;
} }
/**
* eekboard_context_set_fullscreen:
* @context: an #EekboardContext
* @fullscreen: a flag to indicate fullscreen mode
* @cancellable: a #GCancellable
*
* Set the fullscreen mode of @context.
*/
void void
eekboard_context_set_fullscreen (EekboardContext *context, eekboard_context_set_fullscreen (EekboardContext *context,
gboolean fullscreen, gboolean fullscreen,
@ -768,5 +776,4 @@ eekboard_context_set_fullscreen (EekboardContext *context,
context_async_ready_callback, context_async_ready_callback,
NULL); NULL);
} }
return priv->enabled;
} }