Skip to content

Commit 388313f

Browse files
author
jan.nijtmans
committed
Merge 9.0
2 parents f6ace53 + 6faa512 commit 388313f

File tree

3 files changed

+1744
-1198
lines changed

3 files changed

+1744
-1198
lines changed

generic/tkCmds.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1369,13 +1369,13 @@ UseinputmethodsCmd(
13691369
dispPtr = ((TkWindow *) tkwin)->dispPtr;
13701370
if (objc == 2 + skip) {
13711371

1372-
int boolVal;
1372+
int boolValue;
13731373

13741374
if (Tcl_GetBooleanFromObj(interp, objv[1+skip],
1375-
&boolVal) != TCL_OK) {
1375+
&boolValue) != TCL_OK) {
13761376
return TCL_ERROR;
13771377
}
1378-
if (boolVal && (dispPtr->inputMethod != NULL)) {
1378+
if (boolValue && (dispPtr->inputMethod != NULL)) {
13791379
dispPtr->flags |= TK_DISPLAY_USE_IM;
13801380
} else {
13811381
dispPtr->flags &= ~TK_DISPLAY_USE_IM;

0 commit comments

Comments
 (0)