diff options
author | hobbs <hobbs> | 2004-06-29 23:20:25 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2004-06-29 23:20:25 (GMT) |
commit | 8a5fab122f10d4947b2c34057abc78f925299c9b (patch) | |
tree | 5567b685656b5bbfda34840e3ce86a5343c4b8a4 /generic | |
parent | 3a645026ccc01230eb7fdc881f29449f079dba24 (diff) | |
download | tk-8a5fab122f10d4947b2c34057abc78f925299c9b.zip tk-8a5fab122f10d4947b2c34057abc78f925299c9b.tar.gz tk-8a5fab122f10d4947b2c34057abc78f925299c9b.tar.bz2 |
* generic/tkCmds.c (Tk_WinfoObjCmd): refetch interp result obj for
'winfo id' as it can change when making the window exist.
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tkCmds.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/generic/tkCmds.c b/generic/tkCmds.c index e84ba83..c9d684e 100644 --- a/generic/tkCmds.c +++ b/generic/tkCmds.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkCmds.c,v 1.31 2002/09/02 19:16:23 hobbs Exp $ + * RCS: @(#) $Id: tkCmds.c,v 1.31.2.1 2004/06/29 23:20:26 hobbs Exp $ */ #include "tkPort.h" @@ -1245,6 +1245,10 @@ Tk_WinfoObjCmd(clientData, interp, objc, objv) Tk_MakeWindowExist(tkwin); TkpPrintWindowId(buf, Tk_WindowId(tkwin)); + /* + * interp result may have changed, refetch it + */ + resultPtr = Tcl_GetObjResult(interp); Tcl_SetStringObj(resultPtr, buf, -1); break; } |