summaryrefslogtreecommitdiff
path: root/gio/gapplication.h
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2011-12-07 14:36:56 -0500
committerMatthias Clasen <mclasen@redhat.com>2011-12-07 14:38:37 -0500
commit3d686e3d8f6af393b01fe38cd7d29517e52dea50 (patch)
treebde0200d639bc2c194c2501fdbc19bd0b0f340c1 /gio/gapplication.h
parent70dacf83d23ed468ff60972fd166769482d7195f (diff)
downloadglib-3d686e3d8f6af393b01fe38cd7d29517e52dea50.tar.gz
Clarify docs around main loop vfuncs
Mention that the vfuncs are no longer used, and tweak the wording around what g_application_run() does. https://bugzilla.gnome.org/show_bug.cgi?id=665391
Diffstat (limited to 'gio/gapplication.h')
-rw-r--r--gio/gapplication.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/gio/gapplication.h b/gio/gapplication.h
index 3622e0229..c432a3311 100644
--- a/gio/gapplication.h
+++ b/gio/gapplication.h
@@ -81,11 +81,13 @@ struct _GApplication
* 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
+ * @quit_mainloop: Used to be invoked on the primary instance when the use
+ * count of the application drops to zero (and after any inactivity
+ * timeout, if requested). Not used anymore since 2.32
+ * @run_mainloop: Used to be invoked on the primary instance from
+ * g_application_run() if the use-count is non-zero. Since 2.32,
+ * GApplication is iterating the main context directly and is not
+ * using @run_mainloop anymore
*
* Since: 2.28
*/