diff options
| author | jenglish <jenglish@flightlab.com> | 2011-01-22 18:48:34 (GMT) |
|---|---|---|
| committer | jenglish <jenglish@flightlab.com> | 2011-01-22 18:48:34 (GMT) |
| commit | a997d84bbfd5ab7b01bebf18efbc60b358770bc0 (patch) | |
| tree | 3a55948fe4473ef877a9b9aa09604dcc6410abfe | |
| parent | d685935763c05824ff61887bc5f228df5119194a (diff) | |
| download | tk-a997d84bbfd5ab7b01bebf18efbc60b358770bc0.zip tk-a997d84bbfd5ab7b01bebf18efbc60b358770bc0.tar.gz tk-a997d84bbfd5ab7b01bebf18efbc60b358770bc0.tar.bz2 | |
ttk::combobox: Add missing 'validate' command (reported by schelte).
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | generic/ttk/ttkEntry.c | 3 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2011-01-22 Joe English <jenglish@users.sourceforge.net> + + * generic/ttk/ttkEntry.c(ttk::combobox): Add missing + 'validate' command (reported by schelte). + 2011-01-19 Jan Nijtmans <nijtmans@users.sf.net> * generic/ttk/ttkGenStubs.tcl: Make sure to use CONST/VOID in stead of diff --git a/generic/ttk/ttkEntry.c b/generic/ttk/ttkEntry.c index 177295a..cc4086b 100644 --- a/generic/ttk/ttkEntry.c +++ b/generic/ttk/ttkEntry.c @@ -1,5 +1,5 @@ /* - * $Id: ttkEntry.c,v 1.9.4.1 2010/08/26 02:06:09 hobbs Exp $ + * $Id: ttkEntry.c,v 1.9.4.2 2011/01/22 18:48:35 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 } }; |
