testutils: Convert docs

This commit is contained in:
Matthias Clasen 2021-03-01 22:53:25 -05:00 committed by Emmanuele Bassi
parent d0ed62e747
commit acb78afc2d

View File

@ -55,12 +55,6 @@
#include <gdk/x11/gdkx.h>
#endif
/**
* SECTION:gtktesting
* @Short_description: Utilities for testing GTK applications
* @Title: Testing
*/
/**
* gtk_test_init:
* @argcp: Address of the `argc` parameter of the
@ -80,7 +74,7 @@
*
* Like gtk_init() and g_test_init(), any known arguments will be
* processed and stripped from @argc and @argv.
**/
*/
void
gtk_test_init (int *argcp,
char ***argvp,
@ -111,14 +105,15 @@ quit_main_loop_callback (GtkWidget *widget,
* gtk_test_widget_wait_for_draw:
* @widget: the widget to wait for
*
* Enters the main loop and waits for @widget to be drawn. In this
* context that means it waits for the frame clock of @widget to have
* run a full styling, layout and drawing cycle.
* Enters the main loop and waits for @widget to be drawn.
*
* In this context that means it waits for the frame clock of
* @widget to have run a full styling, layout and drawing cycle.
*
* This function is intended to be used for syncing with actions that
* depend on @widget relayouting or on interaction with the display
* server.
**/
*/
void
gtk_test_widget_wait_for_draw (GtkWidget *widget)
{