diff options
author | jenglish <jenglish@flightlab.com> | 2011-01-22 18:49:34 (GMT) |
---|---|---|
committer | jenglish <jenglish@flightlab.com> | 2011-01-22 18:49:34 (GMT) |
commit | e25ac70807eb35adb89ec43c94553588d4327fb3 (patch) | |
tree | f74371cb4431cbd05390e47f8095f7c7c402e3b4 /generic/ttk | |
parent | 29da300289c4ffb2b9758648859f06a8151cbb3a (diff) | |
download | tk-e25ac70807eb35adb89ec43c94553588d4327fb3.zip tk-e25ac70807eb35adb89ec43c94553588d4327fb3.tar.gz tk-e25ac70807eb35adb89ec43c94553588d4327fb3.tar.bz2 |
ttk::combobox: Add missing 'validate' command (reported by schelte).
Diffstat (limited to 'generic/ttk')
-rw-r--r-- | generic/ttk/ttkEntry.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/ttk/ttkEntry.c b/generic/ttk/ttkEntry.c index 58c2c35..5e73495 100644 --- a/generic/ttk/ttkEntry.c +++ b/generic/ttk/ttkEntry.c @@ -1,5 +1,5 @@ /* - * $Id: ttkEntry.c,v 1.20 2010/02/05 17:42:21 nijtmans Exp $ + * $Id: ttkEntry.c,v 1.21 2011/01/22 18:49:34 jenglish Exp $ * * DERIVED FROM: tk/generic/tkEntry.c r1.35. * @@ -1790,6 +1790,7 @@ static const Ttk_Ensemble ComboboxCommands[] = { { "selection", 0,EntrySelectionCommands }, { "state", TtkWidgetStateCommand,0 }, { "set", EntrySetCommand,0 }, + { "validate", EntryValidateCommand,0 }, { "xview", EntryXViewCommand,0 }, { 0,0,0 } }; |