Another stray litreal

This commit is contained in:
Matthias Clasen 2014-02-08 15:28:34 -05:00
parent c4991d24ee
commit d5e5244c30

View File

@ -1344,8 +1344,8 @@ g_application_class_init (GApplicationClass *class)
* the application first. You should probably not call * the application first. You should probably not call
* g_application_activate() for yourself, however: just return -1 and * g_application_activate() for yourself, however: just return -1 and
* allow the default handler to do it for you. This will ensure that * allow the default handler to do it for you. This will ensure that
* the <literal>--gapplication-service</literal> switch works properly * the `--gapplication-service` switch works properly (i.e. no activation
* (ie: no activation in that case). * in that case).
* *
* Note that this signal is emitted from the default implementation of * Note that this signal is emitted from the default implementation of
* local_command_line(). If you override that function and don't * local_command_line(). If you override that function and don't
@ -1973,11 +1973,11 @@ g_application_open (GApplication *application,
* application can inspect the values of its #GOptionEntrys. * application can inspect the values of its #GOptionEntrys.
* *
* #GApplication::handle-local-options is a good place to handle options * #GApplication::handle-local-options is a good place to handle options
* such as <literal>--version</literal>, where an immediate reply from * such as `--version`, where an immediate reply from the local process is
* the local process is desired (instead of communicating with an * desired (instead of communicating with an already-running instance).
* already-running instance). A #GApplication::handle-local-options * A #GApplication::handle-local-options handler can stop further processing
* handler can stop further processing by returning a non-negative * by returning a non-negative value, which then becomes the exit status of
* value, which then becomes the exit status of the process. * the process.
* *
* What happens next depends on the flags: if * What happens next depends on the flags: if
* %G_APPLICATION_HANDLES_COMMAND_LINE was specified then the remaining * %G_APPLICATION_HANDLES_COMMAND_LINE was specified then the remaining