Clarify doc comment.
authorOwen Taylor <otaylor@redhat.com>
Mon, 1 Mar 2004 14:20:30 +0000 (14:20 +0000)
committerOwen Taylor <otaylor@src.gnome.org>
Mon, 1 Mar 2004 14:20:30 +0000 (14:20 +0000)
Mon Mar  1 09:17:32 2004  Owen Taylor  <otaylor@redhat.com>

        * glib/gmain.c (g_main_depth): Clarify doc comment.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
glib/gmain.c

index f588b63..9554bb1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Mon Mar  1 09:17:32 2004  Owen Taylor  <otaylor@redhat.com>
+
+       * glib/gmain.c (g_main_depth): Clarify doc comment.
+
 2004-03-01  Sebastian Wilhelmi  <seppi@seppi.de>
 
        * glib/gatomic.c: Define g_atomic_(int|pointer)_get only for
index f588b63..9554bb1 100644 (file)
@@ -1,3 +1,7 @@
+Mon Mar  1 09:17:32 2004  Owen Taylor  <otaylor@redhat.com>
+
+       * glib/gmain.c (g_main_depth): Clarify doc comment.
+
 2004-03-01  Sebastian Wilhelmi  <seppi@seppi.de>
 
        * glib/gatomic.c: Define g_atomic_(int|pointer)_get only for
index f588b63..9554bb1 100644 (file)
@@ -1,3 +1,7 @@
+Mon Mar  1 09:17:32 2004  Owen Taylor  <otaylor@redhat.com>
+
+       * glib/gmain.c (g_main_depth): Clarify doc comment.
+
 2004-03-01  Sebastian Wilhelmi  <seppi@seppi.de>
 
        * glib/gatomic.c: Define g_atomic_(int|pointer)_get only for
index f588b63..9554bb1 100644 (file)
@@ -1,3 +1,7 @@
+Mon Mar  1 09:17:32 2004  Owen Taylor  <otaylor@redhat.com>
+
+       * glib/gmain.c (g_main_depth): Clarify doc comment.
+
 2004-03-01  Sebastian Wilhelmi  <seppi@seppi.de>
 
        * glib/gatomic.c: Define g_atomic_(int|pointer)_get only for
index f588b63..9554bb1 100644 (file)
@@ -1,3 +1,7 @@
+Mon Mar  1 09:17:32 2004  Owen Taylor  <otaylor@redhat.com>
+
+       * glib/gmain.c (g_main_depth): Clarify doc comment.
+
 2004-03-01  Sebastian Wilhelmi  <seppi@seppi.de>
 
        * glib/gatomic.c: Define g_atomic_(int|pointer)_get only for
index f588b63..9554bb1 100644 (file)
@@ -1,3 +1,7 @@
+Mon Mar  1 09:17:32 2004  Owen Taylor  <otaylor@redhat.com>
+
+       * glib/gmain.c (g_main_depth): Clarify doc comment.
+
 2004-03-01  Sebastian Wilhelmi  <seppi@seppi.de>
 
        * glib/gatomic.c: Define g_atomic_(int|pointer)_get only for
index a0ad764..832abc4 100644 (file)
@@ -1824,13 +1824,10 @@ get_depth_pointer (void)
  * problems with reentrancy. For instance, while waiting for data
  * to be received from the network in response to a menu item,
  * the menu item might be selected again. It might seem that
- * one could write:
- *
- *   if (g_main_depth () > 1)
- *     return; 
- *
- * This should be avoided since the user then sees selecting the
- * menu item do nothing. Furthermore, you'll find yourself adding
+ * one could make the menu item's callback return immediately
+ * and do nothing if g_main_depth() returns a value greater than 1.
+ * However, this should be avoided since the user then sees selecting
+ * the menu item do nothing. Furthermore, you'll find yourself adding
  * these checks all over your code, since there are doubtless many,
  * many things that the user could do. Instead, you can use the
  * following techniques: