diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-06-05 13:03:22 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-06-05 13:03:22 (GMT) |
commit | 060bda7e185c8d85adc2791b6cc059e007db799b (patch) | |
tree | 92859838396d648063a8b2de87532b940528d730 /generic/tkEntry.c | |
parent | 01d203705e3d97a96e794e0b54e79508e285c3c2 (diff) | |
parent | d9a44369370d90d1b8dfd0decd866879a62715f6 (diff) | |
download | tk-060bda7e185c8d85adc2791b6cc059e007db799b.zip tk-060bda7e185c8d85adc2791b6cc059e007db799b.tar.gz tk-060bda7e185c8d85adc2791b6cc059e007db799b.tar.bz2 |
Fix [2100430]: ttk::entry widget index must be integer
Diffstat (limited to 'generic/tkEntry.c')
-rw-r--r-- | generic/tkEntry.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkEntry.c b/generic/tkEntry.c index 1244273..f68e1a3 100644 --- a/generic/tkEntry.c +++ b/generic/tkEntry.c @@ -2560,7 +2560,7 @@ GetEntryIndex( case '@': { int x, roundUp, maxWidth; - if (Tcl_GetInt(interp, string + 1, &x) != TCL_OK) { + if (Tcl_GetInt(NULL, string + 1, &x) != TCL_OK) { goto badIndex; } if (x < entryPtr->inset) { @@ -2589,7 +2589,7 @@ GetEntryIndex( break; } default: - if (Tcl_GetInt(interp, string, indexPtr) != TCL_OK) { + if (Tcl_GetInt(NULL, string, indexPtr) != TCL_OK) { goto badIndex; } if (*indexPtr < 0){ |