summaryrefslogtreecommitdiffstats
path: root/generic/tkCmds.c
diff options
context:
space:
mode:
authorhobbs <hobbs>2004-06-29 23:21:43 (GMT)
committerhobbs <hobbs>2004-06-29 23:21:43 (GMT)
commit0831c2758718531dfd06d401d25b220cdf7ea203 (patch)
treec4b6b7b606975544a40d79f67d317ad8d93c9398 /generic/tkCmds.c
parent81bb26d454846694876397a3efdd385ab742324d (diff)
downloadtk-0831c2758718531dfd06d401d25b220cdf7ea203.zip
tk-0831c2758718531dfd06d401d25b220cdf7ea203.tar.gz
tk-0831c2758718531dfd06d401d25b220cdf7ea203.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/tkCmds.c')
-rw-r--r--generic/tkCmds.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/generic/tkCmds.c b/generic/tkCmds.c
index 39aaf06..f664b8c 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.32 2004/03/17 18:15:43 das Exp $
+ * RCS: @(#) $Id: tkCmds.c,v 1.33 2004/06/29 23:21:43 hobbs Exp $
*/
#include "tkPort.h"
@@ -1241,6 +1241,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;
}