summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authorhobbs <hobbs>2004-06-29 23:20:25 (GMT)
committerhobbs <hobbs>2004-06-29 23:20:25 (GMT)
commit7249e2a6efa8078aaadc17d0c19df395f63299e1 (patch)
tree5567b685656b5bbfda34840e3ce86a5343c4b8a4 /generic
parent7d3f63e205fad5e051e341f8fb82ea0aeb252a0a (diff)
downloadtk-7249e2a6efa8078aaadc17d0c19df395f63299e1.zip
tk-7249e2a6efa8078aaadc17d0c19df395f63299e1.tar.gz
tk-7249e2a6efa8078aaadc17d0c19df395f63299e1.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.c6
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;
}