summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2021-03-01 22:53:25 -0500
committerEmmanuele Bassi <ebassi@gnome.org>2021-03-11 16:37:38 +0000
commitacb78afc2d361330df5fad311abb110d5fc4b9b1 (patch)
treeabef98d198da19f4fa54031202bf0698bcf94eab
parentd0ed62e7477866df22e514afd6c61656e7177b12 (diff)
downloadgtk+-acb78afc2d361330df5fad311abb110d5fc4b9b1.tar.gz
testutils: Convert docs
-rw-r--r--gtk/gtktestutils.c19
1 files changed, 7 insertions, 12 deletions
diff --git a/gtk/gtktestutils.c b/gtk/gtktestutils.c
index 35dcff797c..854e74fe6f 100644
--- a/gtk/gtktestutils.c
+++ b/gtk/gtktestutils.c
@@ -56,12 +56,6 @@
#endif
/**
- * SECTION:gtktesting
- * @Short_description: Utilities for testing GTK applications
- * @Title: Testing
- */
-
-/**
* gtk_test_init:
* @argcp: Address of the `argc` parameter of the
* main() function. Changed if any arguments were handled.
@@ -74,13 +68,13 @@
* This function is used to initialize a GTK test program.
*
* It will in turn call g_test_init() and gtk_init() to properly
- * initialize the testing framework and graphical toolkit. It’ll
+ * initialize the testing framework and graphical toolkit. It’ll
* also set the program’s locale to “C”. This is done to make test
* program environments as deterministic as possible.
*
* 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)
{