diff options
author | das <das> | 2007-06-04 09:28:44 (GMT) |
---|---|---|
committer | das <das> | 2007-06-04 09:28:44 (GMT) |
commit | 5cca131c49f39cce7cabd10ea39473d103e5d505 (patch) | |
tree | b3e77654d4b69228085592fcc9bcb40f322a2d57 /macosx/tkMacOSXSubwindows.c | |
parent | 824e6c983fb4c01fff29673cd17da4366a5e3f5b (diff) | |
download | tk-5cca131c49f39cce7cabd10ea39473d103e5d505.zip tk-5cca131c49f39cce7cabd10ea39473d103e5d505.tar.gz tk-5cca131c49f39cce7cabd10ea39473d103e5d505.tar.bz2 |
* macosx/tkMacOSXMenu.c: add error checking; whitespace cleanup.
* macosx/tkMacOSXDraw.c: sync comment formatting with HEAD.
* macosx/tkMacOSXEmbed.c:
* macosx/tkMacOSXEntry.c:
* macosx/tkMacOSXKeyEvent.c:
* macosx/tkMacOSXKeyboard.c:
* macosx/tkMacOSXMenus.c:
* macosx/tkMacOSXSend.c:
* macosx/tkMacOSXSubwindows.c:
* macosx/tkMacOSXWindowEvent.c:
* macosx/tkMacOSXWm.c:
* macosx/tkMacOSXXStubs.c:
Diffstat (limited to 'macosx/tkMacOSXSubwindows.c')
-rw-r--r-- | macosx/tkMacOSXSubwindows.c | 31 |
1 files changed, 18 insertions, 13 deletions
diff --git a/macosx/tkMacOSXSubwindows.c b/macosx/tkMacOSXSubwindows.c index ed4ebcc..3f47ec5 100644 --- a/macosx/tkMacOSXSubwindows.c +++ b/macosx/tkMacOSXSubwindows.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMacOSXSubwindows.c,v 1.2.2.17 2007/05/31 13:42:12 das Exp $ + * RCS: @(#) $Id: tkMacOSXSubwindows.c,v 1.2.2.18 2007/06/04 09:28:45 das Exp $ */ #include "tkMacOSXInt.h" @@ -472,7 +472,10 @@ MoveResizeWindow( */ } } else { - /* TODO: update all xOff & yOffs */ + /* + * TODO: update all xOff & yOffs + */ + macParent = macWin->winPtr->parentPtr->privatePtr; parentBorderwidth = macWin->winPtr->parentPtr->changes.border_width; } @@ -558,7 +561,9 @@ XRaiseWindow( if (Tk_IsTopLevel(macWin->winPtr) && !Tk_IsEmbedded(macWin->winPtr)) { TkWmRestackToplevel(macWin->winPtr, Above, NULL); } else { - /* TODO: this should generate damage */ + /* + * TODO: this should generate damage + */ } } @@ -590,7 +595,9 @@ XLowerWindow( if (Tk_IsTopLevel(macWin->winPtr) && !Tk_IsEmbedded(macWin->winPtr)) { TkWmRestackToplevel(macWin->winPtr, Below, NULL); } else { - /* TODO: this should generate damage */ + /* + * TODO: this should generate damage + */ } } #endif @@ -748,7 +755,7 @@ TkMacOSXUpdateClipRgn( } /* - * NOTE: Here we should handle out of process embedding. + * TODO: Here we should handle out of process embedding. */ } @@ -790,7 +797,7 @@ TkMacOSXUpdateClipRgn( } /* - * NOTE: Here we should handle out of process embedding. + * TODO: Here we should handle out of process embedding. */ } SetEmptyRgn(tkMacOSXtmpRgn1); @@ -956,10 +963,8 @@ TkMacOSXGetDrawablePort( if (resultPort == NULL) { /* - * FIXME: - * - * So far as I can tell, the only time that this happens is when - * we are tearing down an embedded child interpreter, and most + * FIXME: So far as I can tell, the only time that this happens is + * when we are tearing down an embedded child interpreter, and most * of the time, this is harmless... However, we really need to * find why the embedding loses. */ @@ -968,7 +973,7 @@ TkMacOSXGetDrawablePort( } /* - * NOTE: Here we should handle out of process embedding. + * TODO: Here we should handle out of process embedding. */ } return resultPort; @@ -1083,7 +1088,7 @@ TkMacOSXInvalClipRgns( } /* - * NOTE: Here we should handle out of process embedding. + * TODO: Here we should handle out of process embedding. */ } } @@ -1174,7 +1179,7 @@ UpdateOffsets( } /* - * NOTE: Here we should handle out of process embedding. + * TODO: Here we should handle out of process embedding. */ } } |