aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1996-03-25 01:47:16 +0000
committerRichard M. Stallman1996-03-25 01:47:16 +0000
commit63e9d9700c8025df6fc9847064d09baa133b158a (patch)
tree107d14c680e0c2fc72703c52e920cb5e8f5ebf1f
parent0d807395f89eb2f199ed41b1b2930063ed118494 (diff)
downloademacs-63e9d9700c8025df6fc9847064d09baa133b158a.tar.gz
emacs-63e9d9700c8025df6fc9847064d09baa133b158a.zip
(struct widget_value): New field this_one_change.
-rw-r--r--lwlib/lwlib.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/lwlib/lwlib.h b/lwlib/lwlib.h
index 33c4321f150..6bf26fe23c4 100644
--- a/lwlib/lwlib.h
+++ b/lwlib/lwlib.h
@@ -48,6 +48,9 @@ typedef struct _widget_value
48 Boolean edited; 48 Boolean edited;
49 /* true if has changed (maintained by lw library) */ 49 /* true if has changed (maintained by lw library) */
50 change_type change; 50 change_type change;
51 /* true if this widget itself has changed,
52 but not counting the other widgets found in the `next' field. */
53 change_type this_one_change;
51 /* Contents of the sub-widgets, also selected slot for checkbox */ 54 /* Contents of the sub-widgets, also selected slot for checkbox */
52 struct _widget_value* contents; 55 struct _widget_value* contents;
53 /* data passed to callback */ 56 /* data passed to callback */