summaryrefslogtreecommitdiff
path: root/gio/gapplication.h
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2011-03-03 23:34:49 -0500
committerMatthias Clasen <mclasen@redhat.com>2011-03-03 23:34:49 -0500
commitf05bce027e49ba3ba4dee042ed52837d0145a7bf (patch)
treed5932cfe2802a1fbfe0708d95c0a303704d9e81e /gio/gapplication.h
parent321682871b6547c73d6b8df61643bcc73a0555f7 (diff)
downloadglib-f05bce027e49ba3ba4dee042ed52837d0145a7bf.tar.gz
GApplication: Improve documentation
This commit adds some details regarding platform data.
Diffstat (limited to 'gio/gapplication.h')
-rw-r--r--gio/gapplication.h20
1 files changed, 13 insertions, 7 deletions
diff --git a/gio/gapplication.h b/gio/gapplication.h
index d6605f694..b17870183 100644
--- a/gio/gapplication.h
+++ b/gio/gapplication.h
@@ -70,13 +70,19 @@ struct _GApplication
* via commandline execution. The virtual function has the chance to
* inspect (and possibly replace) the list of command line arguments.
* See g_application_run() for more information.
- * @before_emit: invoked on the primary instance before 'activate', 'open' or any action invocation
- * @after_emit: invoked on the primary instance after 'activate', 'open' or any action invocation
- * @add_platform_data: invoked (locally) to add 'platform data' to be sent to the primary instance when
- * activating, opening or invoking actions
- * @quit_mainloop: invoked on the primary instance when the use count of the application drops to zero (and
- * after any inactivity timeout, if requested)
- * @run_mainloop: invoked on the primary instance from g_application_run() if the use-count is non-zero
+ * @before_emit: invoked on the primary instance before 'activate', 'open',
+ * 'command-line' or any action invocation, gets the 'platform data' from
+ * the calling instance
+ * @after_emit: invoked on the primary instance after 'activate', 'open',
+ * 'command-line' or any action invocation, gets the 'platform data' from
+ * the calling instance
+ * @add_platform_data: invoked (locally) to add 'platform data' to be sent to
+ * the primary instance when activating, opening or invoking actions
+ * @quit_mainloop: invoked on the primary instance when the use count of the
+ * application drops to zero (and after any inactivity timeout, if
+ * requested)
+ * @run_mainloop: invoked on the primary instance from g_application_run()
+ * if the use-count is non-zero
*
* Since: 2.28
*/