summaryrefslogtreecommitdiffstats
path: root/generic/tkEntry.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2013-06-05 13:03:22 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2013-06-05 13:03:22 (GMT)
commit060bda7e185c8d85adc2791b6cc059e007db799b (patch)
tree92859838396d648063a8b2de87532b940528d730 /generic/tkEntry.c
parent01d203705e3d97a96e794e0b54e79508e285c3c2 (diff)
parentd9a44369370d90d1b8dfd0decd866879a62715f6 (diff)
downloadtk-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.c4
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){