diff options
author | Kevin Walzer <kw@codebykevin.com> | 2019-09-09 10:23:39 (GMT) |
---|---|---|
committer | Kevin Walzer <kw@codebykevin.com> | 2019-09-09 10:23:39 (GMT) |
commit | e10bb27a8620007b685ce66d2041f05fad492ce6 (patch) | |
tree | ae210cefbf6e27cda0272b13384af61ed27671b0 /macosx/tkMacOSXWm.c | |
parent | e25946fe475c14a0bbc86cd308bce431e73b6bf0 (diff) | |
download | tk-e10bb27a8620007b685ce66d2041f05fad492ce6.zip tk-e10bb27a8620007b685ce66d2041f05fad492ce6.tar.gz tk-e10bb27a8620007b685ce66d2041f05fad492ce6.tar.bz2 |
Tweak logging message if NSWindow tabbing or apperance operation fails
Diffstat (limited to 'macosx/tkMacOSXWm.c')
-rw-r--r-- | macosx/tkMacOSXWm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/tkMacOSXWm.c b/macosx/tkMacOSXWm.c index 4be79a6..144ba5b 100644 --- a/macosx/tkMacOSXWm.c +++ b/macosx/tkMacOSXWm.c @@ -5829,7 +5829,7 @@ WmWinTabbingId( result = Tcl_NewStringObj(idString.UTF8String, [idString length]); } if (result == NULL) { - NSLog(@"Failed to read tabbing identifier; try calling update before getting/setting the tabbing identifier of the window."); + NSLog(@"Failed to read tabbing identifier; try calling update idletasks before getting/setting the tabbing identifier of the window."); return TCL_OK; } Tcl_SetObjResult(interp, result); @@ -5930,7 +5930,7 @@ WmWinAppearance( result = Tcl_NewStringObj(resultString, strlen(resultString)); } if (result == NULL) { - NSLog(@"Failed to read appearance name; try calling update before getting/setting the appearance of the window."); + NSLog(@"Failed to read appearance name; try calling update idletasks before getting/setting the appearance of the window."); return TCL_OK; } if (objc == 4) { |