From f7960709322830225bdd51fc1d89cb6b15d980db Mon Sep 17 00:00:00 2001 From: chengyemao Date: Sat, 8 May 2004 03:53:57 +0000 Subject: Fixed bug 767176 --- ChangeLog | 4 ++++ win/tkWinWm.c | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1d2ce61..12dd906 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-05-07 Chengye Mao + * win/tkWinWm.c : handle and destroy old wrapper + correctly and fix crash problem in wish exiting [Bug 767176]. + 2004-05-05 Jeff Hobbs * win/tkWinFont.c (FindSubFontForChar): corrections to dkf patch diff --git a/win/tkWinWm.c b/win/tkWinWm.c index e555484..86f2073 100644 --- a/win/tkWinWm.c +++ b/win/tkWinWm.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkWinWm.c,v 1.60 2004/01/13 02:06:02 davygrvy Exp $ + * RCS: @(#) $Id: tkWinWm.c,v 1.61 2004/05/08 03:53:57 chengyemao Exp $ */ #include "tkWinInt.h" @@ -1805,7 +1805,7 @@ UpdateWrapper(winPtr) TkWindow *winPtr; /* Top-level window to redecorate. */ { register WmInfo *wmPtr = winPtr->wmInfoPtr; - HWND parentHWND, oldWrapper; + HWND parentHWND, oldWrapper = wmPtr->wrapper; HWND child; int x, y, width, height, state; WINDOWPLACEMENT place; @@ -1946,7 +1946,7 @@ UpdateWrapper(winPtr) SetWindowLong(child, GWL_WNDPROC, (LONG) TopLevelProc); #endif } - oldWrapper = SetParent(child, wmPtr->wrapper); + SetParent(child, wmPtr->wrapper); if (oldWrapper) { hSmallIcon = (HICON) SendMessage(oldWrapper, WM_GETICON, ICON_SMALL, (LPARAM) NULL); -- cgit v0.12