summaryrefslogtreecommitdiffstats
path: root/generic/tkListbox.c
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2016-01-08 23:22:29 (GMT)
committerfvogel <fvogelnew1@free.fr>2016-01-08 23:22:29 (GMT)
commitf1ad837bb6dfcf955f3b560dc34892e9031dd7bd (patch)
treed4a389115904df16b3904168376662a4d975ccc8 /generic/tkListbox.c
parentc0690b39259579097efedce36dffdc37d3626be2 (diff)
downloadtk-f1ad837bb6dfcf955f3b560dc34892e9031dd7bd.zip
tk-f1ad837bb6dfcf955f3b560dc34892e9031dd7bd.tar.gz
tk-f1ad837bb6dfcf955f3b560dc34892e9031dd7bd.tar.bz2
Use TK_OPTION_NULL_OK instead of TK_CONFIG_NULL_OK
Diffstat (limited to 'generic/tkListbox.c')
-rw-r--r--generic/tkListbox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tkListbox.c b/generic/tkListbox.c
index ff72596..537bbfc 100644
--- a/generic/tkListbox.c
+++ b/generic/tkListbox.c
@@ -278,7 +278,7 @@ static const Tk_OptionSpec optionSpecs[] = {
Tk_Offset(Listbox, selBorderWidth), 0, 0, 0},
{TK_OPTION_COLOR, "-selectforeground", "selectForeground", "Background",
DEF_LISTBOX_SELECT_FG_COLOR, -1, Tk_Offset(Listbox, selFgColorPtr),
- TK_CONFIG_NULL_OK, (ClientData) DEF_LISTBOX_SELECT_FG_MONO, 0},
+ TK_OPTION_NULL_OK, (ClientData) DEF_LISTBOX_SELECT_FG_MONO, 0},
{TK_OPTION_STRING, "-selectmode", "selectMode", "SelectMode",
DEF_LISTBOX_SELECT_MODE, -1, Tk_Offset(Listbox, selectMode),
TK_OPTION_NULL_OK, 0, 0},