diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-03-25 01:47:16 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-03-25 01:47:16 +0000 |
commit | 63e9d9700c8025df6fc9847064d09baa133b158a (patch) | |
tree | 107d14c680e0c2fc72703c52e920cb5e8f5ebf1f /lwlib/lwlib.h | |
parent | 0d807395f89eb2f199ed41b1b2930063ed118494 (diff) | |
download | emacs-63e9d9700c8025df6fc9847064d09baa133b158a.tar.gz |
(struct widget_value): New field this_one_change.
Diffstat (limited to 'lwlib/lwlib.h')
-rw-r--r-- | lwlib/lwlib.h | 3 |
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 Boolean edited; /* true if has changed (maintained by lw library) */ change_type change; + /* true if this widget itself has changed, + but not counting the other widgets found in the `next' field. */ + change_type this_one_change; /* Contents of the sub-widgets, also selected slot for checkbox */ struct _widget_value* contents; /* data passed to callback */ |