diff options
author | fvogel <fvogelnew1@free.fr> | 2020-07-08 20:36:06 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2020-07-08 20:36:06 (GMT) |
commit | 3018d78340026597655745f383e8f4c2e4e9505d (patch) | |
tree | ef95c293ecfc06d3227776df90f2aa1d8838292c /generic | |
parent | db1b8a5882c70d2016d8f24c02bc8f70fa5eb155 (diff) | |
download | tk-3018d78340026597655745f383e8f4c2e4e9505d.zip tk-3018d78340026597655745f383e8f4c2e4e9505d.tar.gz tk-3018d78340026597655745f383e8f4c2e4e9505d.tar.bz2 |
Fix [34214bbdae]: typographical fixes in comments. Thanks to Christopher Chavez.
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tkBind.c | 2 | ||||
-rw-r--r-- | generic/tkCanvPs.c | 2 | ||||
-rw-r--r-- | generic/tkEntry.c | 4 | ||||
-rw-r--r-- | generic/tkInt.h | 2 | ||||
-rw-r--r-- | generic/tkTextDisp.c | 4 | ||||
-rw-r--r-- | generic/tkTextTag.c | 2 | ||||
-rw-r--r-- | generic/ttk/ttkEntry.c | 2 |
7 files changed, 9 insertions, 9 deletions
diff --git a/generic/tkBind.c b/generic/tkBind.c index eacdf56..b3bddc9 100644 --- a/generic/tkBind.c +++ b/generic/tkBind.c @@ -3506,7 +3506,7 @@ DeleteVirtualEventTable( * already defined, the new definition augments those that already exist. * * Results: - * The return value is TCL_ERROR if an error occured while creating the + * The return value is TCL_ERROR if an error occurred while creating the * virtual binding. In this case, an error message will be left in the * interp's result. If all went well then the return value is TCL_OK. * diff --git a/generic/tkCanvPs.c b/generic/tkCanvPs.c index bcd1d13..1a8b3d3 100644 --- a/generic/tkCanvPs.c +++ b/generic/tkCanvPs.c @@ -1601,7 +1601,7 @@ Tk_PostscriptPhoto( /* * Generate data for image in monochrome mode. No attempt at * dithering is made--instead, just set a threshold. To handle - * transparecies we need to output two lines: one for the black + * transparencies we need to output two lines: one for the black * pixels, one for the white ones. */ diff --git a/generic/tkEntry.c b/generic/tkEntry.c index 5fbff40..8141daf 100644 --- a/generic/tkEntry.c +++ b/generic/tkEntry.c @@ -3268,7 +3268,7 @@ EntryValidate( * * Results: * TCL_OK if the validatecommand accepts the new string, TCL_ERROR if any - * problems occured with validatecommand. + * problems occurred with validatecommand. * * Side effects: * The insertion/deletion may be aborted, and the validatecommand might @@ -3329,7 +3329,7 @@ EntryValidateChange( /* * If e->validate has become VALIDATE_NONE during the validation, or we * now have VALIDATE_VAR set (from EntrySetValue) and didn't before, it - * means that a loop condition almost occured. Do not allow this + * means that a loop condition almost occurred. Do not allow this * validation result to finish. */ diff --git a/generic/tkInt.h b/generic/tkInt.h index 3a8328f..22460fb 100644 --- a/generic/tkInt.h +++ b/generic/tkInt.h @@ -692,7 +692,7 @@ typedef struct TkWindow { Visual *visual; /* Visual to use for window. If not default, * MUST be set before X window is created. */ int depth; /* Number of bits/pixel. */ - Window window; /* X's id for window. NULL means window hasn't + Window window; /* X's id for window. None means window hasn't * actually been created yet, or it's been * deleted. */ struct TkWindow *childList; /* First in list of child windows, or NULL if diff --git a/generic/tkTextDisp.c b/generic/tkTextDisp.c index 93b56aa..6d680f6 100644 --- a/generic/tkTextDisp.c +++ b/generic/tkTextDisp.c @@ -1367,7 +1367,7 @@ LayoutDLine( * expectations in the rest of the code, but we are able to skip * elided portions of the line quickly. * - * If current chunk is elided and last chunk was too, coalese. + * If current chunk is elided and last chunk was too, coalesce. * * This also means that each logical line which is entirely elided * still gets laid out into a DLine, but with zero height. This isn't @@ -5275,7 +5275,7 @@ TkTextRelayoutWindow( /* * Invalidate cached scrollbar positions, so that scrollbars sliders will - * be udpated. + * be updated. */ dInfoPtr->xScrollFirst = dInfoPtr->xScrollLast = -1; diff --git a/generic/tkTextTag.c b/generic/tkTextTag.c index 0d223fe..f7e4294 100644 --- a/generic/tkTextTag.c +++ b/generic/tkTextTag.c @@ -1440,7 +1440,7 @@ ChangeTagPriority( void TkTextBindProc( - ClientData clientData, /* Pointer to canvas structure. */ + ClientData clientData, /* Pointer to text widget structure. */ XEvent *eventPtr) /* Pointer to X event that just happened. */ { TkText *textPtr = clientData; diff --git a/generic/ttk/ttkEntry.c b/generic/ttk/ttkEntry.c index 29f69a1..770d8ff 100644 --- a/generic/ttk/ttkEntry.c +++ b/generic/ttk/ttkEntry.c @@ -557,7 +557,7 @@ static int EntryNeedsValidation(VMODE vmode, VREASON reason) * Returns: * TCL_OK if the change is accepted * TCL_BREAK if the change is rejected - * TCL_ERROR if any errors occured + * TCL_ERROR if any errors occurred * * The change will be rejected if -validatecommand returns 0, * or if -validatecommand or -invalidcommand modifies the value. |