Replace @Varargs with @...
authorRyan Lortie <desrt@desrt.ca>
Fri, 22 Jul 2011 11:25:32 +0000 (13:25 +0200)
committerRyan Lortie <desrt@desrt.ca>
Fri, 22 Jul 2011 13:47:24 +0000 (15:47 +0200)
to make gtk-doc happy.

glib/gerror.c
glib/gfileutils.c
glib/gmarkup.c
glib/gmessages.c
glib/gprintf.c
glib/grel.c
glib/gstrfuncs.c
glib/gstring.c
glib/gtestutils.c

index 2f5f8a9cf69a97d8113eeef0f3049b61c344fd31..015d7096801dd794841fe86bea028de6f9af5f65 100644 (file)
@@ -391,7 +391,7 @@ g_error_new_valist (GQuark       domain,
  * @domain: error domain
  * @code: error code
  * @format: printf()-style format for error message
- * @Varargs: parameters for message format
+ * @...: parameters for message format
  *
  * Creates a new #GError with the given @domain and @code,
  * and a message formatted with @format.
@@ -521,7 +521,7 @@ g_error_matches (const GError *error,
  * @domain: error domain
  * @code: error code
  * @format: printf()-style format
- * @Varargs: args for @format
+ * @...: args for @format
  *
  * Does nothing if @err is %NULL; if @err is non-%NULL, then *@err
  * must be %NULL. A new #GError is created and assigned to *@err.
index fc101bdb26f01fddf3de6e6c6297fb399e49d75d..75ba0449a00d2b268b2ee811a8a78c03d91c4eaf 100644 (file)
@@ -1534,7 +1534,7 @@ g_build_pathv (const gchar  *separator,
  * g_build_path:
  * @separator: a string used to separator the elements of the path.
  * @first_element: the first element in the path
- * @Varargs: remaining elements in path, terminated by %NULL
+ * @...: remaining elements in path, terminated by %NULL
  * 
  * Creates a path from a series of elements using @separator as the
  * separator between elements. At the boundary between two elements,
@@ -1728,7 +1728,7 @@ g_build_filenamev (gchar **args)
 /**
  * g_build_filename:
  * @first_element: the first element in the path
- * @Varargs: remaining elements in path, terminated by %NULL
+ * @...: remaining elements in path, terminated by %NULL
  * 
  * Creates a filename from a series of elements using the correct
  * separator for filenames.
index 7cc1b0dc48e445bfaf315954ed7c4047fc68e0a2..b588d9108a7b9df04cb98e5be809989759fe3bf4 100644 (file)
@@ -2454,7 +2454,7 @@ g_markup_vprintf_escaped (const gchar *format,
 /**
  * g_markup_printf_escaped:
  * @format: printf() style format string
- * @Varargs: the arguments to insert in the format string
+ * @...: the arguments to insert in the format string
  *
  * Formats arguments according to @format, escaping
  * all string and character arguments in the fashion
index 43b958fb046fc0267246bd7b5b2cddc22f42d14e..986087567226d8ec6b33d356ec0944f141d5647d 100644 (file)
@@ -1034,7 +1034,7 @@ g_set_print_handler (GPrintFunc func)
 /**
  * g_print:
  * @format: the message format. See the printf() documentation
- * @Varargs: the parameters to insert into the format string
+ * @...: the parameters to insert into the format string
  *
  * Outputs a formatted message via the print handler.
  * The default print handler simply outputs the message to stdout.
@@ -1113,7 +1113,7 @@ g_set_printerr_handler (GPrintFunc func)
 /**
  * g_printerr:
  * @format: the message format. See the printf() documentation
- * @Varargs: the parameters to insert into the format string
+ * @...: the parameters to insert into the format string
  *
  * Outputs a formatted message via the error message handler.
  * The default handler simply outputs the message to stderr.
index 9108acb1b2fc7dba503ce3e83fc2385b4e1ec6dd..346fd956ecce31e9f1606b84b5d7068e33143276 100644 (file)
@@ -31,7 +31,7 @@
  * g_printf:
  * @format: a standard printf() format string, but notice 
  *          <link linkend="string-precision">string precision pitfalls</link>.
- * @Varargs: the arguments to insert in the output.
+ * @...: the arguments to insert in the output.
  *
  * An implementation of the standard printf() function which supports 
  * positional parameters, as specified in the Single Unix Specification.
@@ -59,7 +59,7 @@ g_printf (gchar const *format,
  * @file: the stream to write to.
  * @format: a standard printf() format string, but notice 
  *          <link linkend="string-precision">string precision pitfalls</link>.
- * @Varargs: the arguments to insert in the output.
+ * @...: the arguments to insert in the output.
  *
  * An implementation of the standard fprintf() function which supports 
  * positional parameters, as specified in the Single Unix Specification.
@@ -90,7 +90,7 @@ g_fprintf (FILE        *file,
  *          enough to hold the formatted result
  * @format: a standard printf() format string, but notice
  *          <link linkend="string-precision">string precision pitfalls</link>.
- * @Varargs: the arguments to insert in the output.
+ * @...: the arguments to insert in the output.
  *
  * An implementation of the standard sprintf() function which supports
  * positional parameters, as specified in the Single Unix Specification.
@@ -126,7 +126,7 @@ g_sprintf (gchar       *string,
  *     terminating nul character).
  * @format: a standard printf() format string, but notice
  *          <link linkend="string-precision">string precision pitfalls</link>.
- * @Varargs: the arguments to insert in the output.
+ * @...: the arguments to insert in the output.
  *
  * A safer form of the standard sprintf() function. The output is guaranteed
  * to not exceed @n characters (including the terminating nul character), so
index 9ad586131ce9b9c41f6211298ce2dc332db57112..f790390fec62a42563f2a5d202b8d9599bc04c1c 100644 (file)
@@ -280,9 +280,9 @@ g_relation_index (GRelation   *relation,
 /**
  * g_relation_insert:
  * @relation: a #GRelation.
- * @Varargs: the fields of the record to add. These must match the
- *           number of fields in the #GRelation, and of type #gpointer
- *           or #gconstpointer.
+ * @...: the fields of the record to add. These must match the
+ *       number of fields in the #GRelation, and of type #gpointer
+ *       or #gconstpointer.
  *
  * Inserts a record into a #GRelation.
  *
@@ -516,8 +516,8 @@ g_relation_count (GRelation     *relation,
 /**
  * g_relation_exists:
  * @relation: a #GRelation.
- * @Varargs: the fields of the record to compare. The number must match
- *           the number of fields in the #GRelation.
+ * @...: the fields of the record to compare. The number must match
+ *       the number of fields in the #GRelation.
  * @Returns: %TRUE if a record matches.
  *
  * Returns %TRUE if a record with the given values exists in a
index 71710aad99caa7bbbcca450e9530e3e1aa076770..c695c9fe33ba64d75ca532f279bf7e97b1c381d4 100644 (file)
@@ -259,7 +259,7 @@ g_strdup_vprintf (const gchar *format,
  * g_strdup_printf:
  * @format: a standard printf() format string, but notice
  *     <link linkend="string-precision">string precision pitfalls</link>
- * @Varargs: the parameters to insert into the format string
+ * @...: the parameters to insert into the format string
  *
  * Similar to the standard C sprintf() function but safer, since it
  * calculates the maximum space required and allocates memory to hold
@@ -285,7 +285,7 @@ g_strdup_printf (const gchar *format,
 /**
  * g_strconcat:
  * @string1: the first string to add, which must not be %NULL
- * @Varargs: a %NULL-terminated list of strings to append to the string
+ * @...: a %NULL-terminated list of strings to append to the string
  *
  * Concatenates all of the given strings into one long string.
  * The returned string should be freed with g_free() when no longer needed.
@@ -2666,7 +2666,7 @@ g_strjoinv (const gchar  *separator,
 /**
  * g_strjoin:
  * @separator: a string to insert between each of the strings, or %NULL
- * @Varargs: a %NULL-terminated list of strings to join
+ * @...: a %NULL-terminated list of strings to join
  *
  * Joins a number of strings together to form one long string, with the
  * optional @separator inserted between each of them. The returned string
index 59df749beb6f039d708a228069b8b94fd2a3aebb..cd4d126200683d75313f28da9160a1cacf64a4c6 100644 (file)
@@ -1455,7 +1455,7 @@ g_string_vprintf (GString     *string,
  * g_string_sprintf:
  * @string: a #GString
  * @format: the string format. See the sprintf() documentation
- * @Varargs: the parameters to insert into the format string
+ * @...: the parameters to insert into the format string
  *
  * Writes a formatted string into a #GString.
  * This is similar to the standard sprintf() function,
@@ -1470,7 +1470,7 @@ g_string_vprintf (GString     *string,
  * g_string_printf:
  * @string: a #GString
  * @format: the string format. See the printf() documentation
- * @Varargs: the parameters to insert into the format string
+ * @...: the parameters to insert into the format string
  *
  * Writes a formatted string into a #GString.
  * This is similar to the standard sprintf() function,
@@ -1496,7 +1496,7 @@ g_string_printf (GString     *string,
  * g_string_sprintfa:
  * @string: a #GString
  * @format: the string format. See the sprintf() documentation
- * @Varargs: the parameters to insert into the format string
+ * @...: the parameters to insert into the format string
  *
  * Appends a formatted string onto the end of a #GString.
  * This function is similar to g_string_sprintf() except that
@@ -1509,7 +1509,7 @@ g_string_printf (GString     *string,
  * g_string_append_printf:
  * @string: a #GString
  * @format: the string format. See the printf() documentation
- * @Varargs: the parameters to insert into the format string
+ * @...: the parameters to insert into the format string
  *
  * Appends a formatted string onto the end of a #GString.
  * This function is similar to g_string_printf() except 
index 4977bdb60bde19dcc086588b510598d2a35307b2..623ee12c979bb6fb412dc998c9a5fefaf0dd999d 100644 (file)
@@ -407,7 +407,7 @@ parse_args (gint    *argc_p,
  *        Changed if any arguments were handled.
  * @argv: Address of the @argv parameter of main().
  *        Any parameters understood by g_test_init() stripped before return.
- * @Varargs: Reserved for future extension. Currently, you must pass %NULL.
+ * @...: Reserved for future extension. Currently, you must pass %NULL.
  *
  * Initialize the GLib testing framework, e.g. by seeding the
  * test random number generator, the name for g_get_prgname()
@@ -705,7 +705,7 @@ g_test_timer_last (void)
  * g_test_minimized_result:
  * @minimized_quantity: the reported value
  * @format: the format string of the report message
- * @Varargs: arguments to pass to the printf() function
+ * @...: arguments to pass to the printf() function
  *
  * Report the result of a performance or measurement test.
  * The test should generally strive to minimize the reported
@@ -736,7 +736,7 @@ g_test_minimized_result (double          minimized_quantity,
  * g_test_maximized_result:
  * @maximized_quantity: the reported value
  * @format: the format string of the report message
- * @Varargs: arguments to pass to the printf() function
+ * @...: arguments to pass to the printf() function
  *
  * Report the result of a performance or measurement test.
  * The test should generally strive to maximize the reported