X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gio%2Fgapplicationcommandline.c;h=d5e508a863f8ddf4d6af35d9b5deebf303ffb1f6;hb=958da1e9dc82fbb91862501226b8928faf2f9558;hp=748c9d4fae2c3fad00d85d10cd46d2ab6776f6bf;hpb=0e671286fc59b4a68e8640b955c07bd874486dd5;p=platform%2Fupstream%2Fglib.git diff --git a/gio/gapplicationcommandline.c b/gio/gapplicationcommandline.c index 748c9d4..d5e508a 100644 --- a/gio/gapplicationcommandline.c +++ b/gio/gapplicationcommandline.c @@ -57,7 +57,8 @@ * The GApplicationCommandLine object can provide the @argc and @argv * parameters for use with the #GOptionContext command-line parsing API, * with the g_application_command_line_get_arguments() function. See - * for an example. + * [gapplication-example-cmdline3.c][gapplication-example-cmdline3] + * for an example. * * The exit status of the originally-invoked process may be set and * messages can be printed to stdout or stderr of that process. The @@ -149,9 +150,9 @@ * } * ]| * In this example of split commandline handling, options that start - * with --local- are handled locally, all other - * options are passed to the #GApplication::command-line handler - * which runs in the primary instance. + * with `--local-` are handled locally, all other options are passed + * to the #GApplication::command-line handler which runs in the primary + * instance. * * The complete example can be found here: * [gapplication-example-cmdline2.c](https://git.gnome.org/browse/glib/tree/gio/tests/gapplication-example-cmdline2.c) @@ -164,10 +165,10 @@ * { * GApplicationCommandLine *cmdline = data; * - * /* do the heavy lifting in an idle */ + * // do the heavy lifting in an idle * * g_application_command_line_set_exit_status (cmdline, 0); - * g_object_unref (cmdline); /* this releases the application */ + * g_object_unref (cmdline); // this releases the application * * return G_SOURCE_REMOVE; * } @@ -176,7 +177,7 @@ * command_line (GApplication *application, * GApplicationCommandLine *cmdline) * { - * /* keep the application running until we are done with this commandline */ + * // keep the application running until we are done with this commandline * g_application_hold (application); * * g_object_set_data_full (G_OBJECT (cmdline), @@ -779,7 +780,7 @@ g_application_command_line_get_exit_status (GApplicationCommandLine *cmdline) * * For local invocation, it will be %NULL. * - * Returns: (allow-none): the platform data, or %NULL + * Returns: (nullable): the platform data, or %NULL * * Since: 2.28 **/