diff options
author | wolfsuit <wolfsuit@noemail.net> | 2005-03-12 00:49:27 (GMT) |
---|---|---|
committer | wolfsuit <wolfsuit@noemail.net> | 2005-03-12 00:49:27 (GMT) |
commit | f7ef908e76e30b1f2ec0ecdb47f0763a4e732c98 (patch) | |
tree | a653deaea813d558fc1961f902ee8e7ff6518cfb /macosx/tkMacOSXWm.c | |
parent | b9a85ee091f4fa2eb63fc6d4e29bba4ff0db5e15 (diff) | |
download | tk-f7ef908e76e30b1f2ec0ecdb47f0763a4e732c98.zip tk-f7ef908e76e30b1f2ec0ecdb47f0763a4e732c98.tar.gz tk-f7ef908e76e30b1f2ec0ecdb47f0763a4e732c98.tar.bz2 |
Fix for 1124237 and the mysterious "sometimes buttons don't draw" bug.
FossilOrigin-Name: 070826cbe413fd69e51b9ff8ea9fc86f22d929b0
Diffstat (limited to 'macosx/tkMacOSXWm.c')
-rw-r--r-- | macosx/tkMacOSXWm.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/macosx/tkMacOSXWm.c b/macosx/tkMacOSXWm.c index fe8b9a0..9913688 100644 --- a/macosx/tkMacOSXWm.c +++ b/macosx/tkMacOSXWm.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: tkMacOSXWm.c,v 1.7.2.6 2004/11/11 01:26:43 das Exp $ + * RCS: @(#) $Id: tkMacOSXWm.c,v 1.7.2.7 2005/03/12 00:49:38 wolfsuit Exp $ */ #include <Carbon/Carbon.h> @@ -5049,6 +5049,7 @@ TkpMakeMenuWindow( } } + /* *---------------------------------------------------------------------- * @@ -5156,7 +5157,7 @@ TkMacOSXMakeRealWindowExist( listPtr->winPtr = winPtr; tkMacOSXWindowListPtr = listPtr; - macWin->grafPtr = GetWindowPort ( newWindow ); + macWin->grafPtr = GetWindowPort (newWindow); macWin->rootControl = rootControl; MoveWindowStructure(newWindow, geometry.left, geometry.top); SetPort(GetWindowPort(newWindow)); |