diff options
-rw-r--r-- | generic/tkFocus.c | 8 | ||||
-rw-r--r-- | generic/tkGeometry.c | 2 | ||||
-rw-r--r-- | macosx/tkMacOSXWm.c | 2 | ||||
-rw-r--r-- | unix/tkUnixWm.c | 2 | ||||
-rw-r--r-- | win/tkWinWm.c | 12 |
5 files changed, 13 insertions, 13 deletions
diff --git a/generic/tkFocus.c b/generic/tkFocus.c index 8066afd..9b3b2dc 100644 --- a/generic/tkFocus.c +++ b/generic/tkFocus.c @@ -315,7 +315,7 @@ TkFocusFilterEvent( * embedded child. We don't care about this, although we may end * up getting a NotifyPointer later. * NotifyInferior - focus is coming to us from an embedded child. When - * focus is on an embeded focus, we still think we have the + * focus is on an embedded focus, we still think we have the * focus, too, so this message doesn't change our state. * NotifyPointerRoot - should never happen because this is sent to the * root window. @@ -369,7 +369,7 @@ TkFocusFilterEvent( } /* - * If winPtr isn't a top-level window than just ignore the event. + * If winPtr isn't a top-level window then just ignore the event. */ winPtr = TkWmFocusToplevel(winPtr); @@ -636,7 +636,7 @@ TkSetFocusWin( * We are assigning focus to an embedded toplevel. The platform * specific function TkpClaimFocus needs to handle the job of * assigning focus to the container, since we have no way to find the - * contaiuner. + * container. */ TkpClaimFocus(topLevelPtr, force); @@ -1167,7 +1167,7 @@ TkFocusSplit( * * TkFocusJoin -- * - * Remove the focus record for this window that is nolonger managed + * Remove the focus record for this window that is no longer managed * * Results: * None. diff --git a/generic/tkGeometry.c b/generic/tkGeometry.c index 013347b..6e61361 100644 --- a/generic/tkGeometry.c +++ b/generic/tkGeometry.c @@ -561,7 +561,7 @@ Tk_MaintainGeometry( void Tk_UnmaintainGeometry( - Tk_Window window, /* WIndow for geometry management. */ + Tk_Window window, /* Window for geometry management. */ Tk_Window container) /* Container for window; must be a descendant of * window's parent. */ { diff --git a/macosx/tkMacOSXWm.c b/macosx/tkMacOSXWm.c index 0d52e43..9391906 100644 --- a/macosx/tkMacOSXWm.c +++ b/macosx/tkMacOSXWm.c @@ -3798,7 +3798,7 @@ WmTransientCmd( } for (w = containerPtr; w != NULL && w->wmInfoPtr != NULL; - w = (TkWindow *)w->wmInfoPtr->container) { + w = (TkWindow *)w->wmInfoPtr->container) { if (w == winPtr) { Tcl_SetObjResult(interp, Tcl_ObjPrintf( "setting \"%s\" as master creates a transient/master cycle", diff --git a/unix/tkUnixWm.c b/unix/tkUnixWm.c index 83b36e3..8330098 100644 --- a/unix/tkUnixWm.c +++ b/unix/tkUnixWm.c @@ -3600,7 +3600,7 @@ WmTransientCmd( } for (w = containerPtr; w != NULL && w->wmInfoPtr != NULL; - w = (TkWindow *)w->wmInfoPtr->containerPtr) { + w = (TkWindow *)w->wmInfoPtr->containerPtr) { if (w == winPtr) { Tcl_SetObjResult(interp, Tcl_ObjPrintf( "setting \"%s\" as master creates a transient/master cycle", diff --git a/win/tkWinWm.c b/win/tkWinWm.c index d2602f7..9495f7d 100644 --- a/win/tkWinWm.c +++ b/win/tkWinWm.c @@ -5580,7 +5580,7 @@ WmTransientCmd( return TCL_ERROR; } for (w = containerPtr; w != NULL && w->wmInfoPtr != NULL; - w = (TkWindow *)w->wmInfoPtr->containerPtr) { + w = (TkWindow *)w->wmInfoPtr->containerPtr) { if (w == winPtr) { Tcl_SetObjResult(interp, Tcl_ObjPrintf( "setting \"%s\" as master creates a transient/master cycle", @@ -8297,7 +8297,7 @@ ActivateWindow( /* * If the toplevel is in the middle of a move or size operation then * we must delay handling of this event to avoid stealing the focus - * while the window manage is in control. + * while the window manager is in control. */ if (eventPtr->flagPtr && *eventPtr->flagPtr) { @@ -8365,7 +8365,7 @@ TkWinSetForegroundWindow( * * TkpWinToplevelWithdraw -- * - * This function is to be used by a window manage to withdraw a toplevel + * This function is to be used by a window manager to withdraw a toplevel * window. * * Results: @@ -8392,7 +8392,7 @@ TkpWinToplevelWithDraw( * * TkpWinToplevelIconify -- * - * This function is to be used by a window manage to iconify a toplevel + * This function is to be used by a window manager to iconify a toplevel * window. * * Results: @@ -8416,7 +8416,7 @@ TkpWinToplevelIconify( * * TkpWinToplevelDeiconify -- * - * This function is to be used by a window manage to deiconify a toplevel + * This function is to be used by a window manager to deiconify a toplevel * window. * * Results: @@ -8483,7 +8483,7 @@ TkpWinToplevelDeiconify( * * TkpWinGeometryIsControlledByWm -- * - * This function is to be used by a window manage to see if wm has + * This function is to be used by a window manager to see if wm has * canceled geometry control. * * Results: |