diff options
author | hobbs <hobbs> | 1999-11-23 23:52:13 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 1999-11-23 23:52:13 (GMT) |
commit | b6cf1cf2288ef3a39ed7ff39ec16deb96f206f9a (patch) | |
tree | adac85e2547fa56320d1aaeabbc15111a4e44bc5 /generic/tk.h | |
parent | 44dd355669ae99d29a496731968b72e76305ee2c (diff) | |
download | tk-b6cf1cf2288ef3a39ed7ff39ec16deb96f206f9a.zip tk-b6cf1cf2288ef3a39ed7ff39ec16deb96f206f9a.tar.gz tk-b6cf1cf2288ef3a39ed7ff39ec16deb96f206f9a.tar.bz2 |
* generic/tk.h:
* generic/tkConfig.c: added support for TK_OPTION_DONT_SET_DEFAULT
as equiv for TK_CONFIG_DONT_SET_DEFAULT
* generic/tkListbox.c: added TK_OPTION_DONT_SET_DEFAULT to the
item specs
Diffstat (limited to 'generic/tk.h')
-rw-r--r-- | generic/tk.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tk.h b/generic/tk.h index 68b1805..552611f 100644 --- a/generic/tk.h +++ b/generic/tk.h @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tk.h,v 1.32 1999/10/29 03:57:55 hobbs Exp $ + * RCS: @(#) $Id: tk.h,v 1.33 1999/11/23 23:52:13 hobbs Exp $ */ #ifndef _TK @@ -199,6 +199,7 @@ typedef struct Tk_OptionSpec { */ #define TK_OPTION_NULL_OK 1 +#define TK_OPTION_DONT_SET_DEFAULT 8 /* * Macro to use to fill in "offset" fields of the Tk_OptionSpec. |