Skip to content

Commit 405d114

Browse files
author
jan.nijtmans
committed
Complete [29ba539501] fix for "text"
2 parents 4e47d1a + 87af722 commit 405d114

14 files changed

+340
-313
lines changed

generic/tkButton.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1181,7 +1181,7 @@ ConfigureButton(
11811181
* selected.
11821182
*/
11831183

1184-
if ((butPtr->type == TYPE_RADIO_BUTTON) &&
1184+
if ((butPtr->type == TYPE_RADIO_BUTTON) &&
11851185
(*Tcl_GetString(butPtr->onValuePtr) == '\0')) {
11861186
butPtr->flags |= SELECTED;
11871187
}

generic/tkButton.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ MODULE_SCOPE void TkButtonWorldChanged(void *instanceData);
302302
MODULE_SCOPE void TkpComputeButtonGeometry(TkButton *butPtr);
303303
MODULE_SCOPE TkButton *TkpCreateButton(Tk_Window tkwin);
304304
#ifndef TkpDestroyButton
305-
MODULE_SCOPE void TkpDestroyButton(TkButton *butPtr);
305+
MODULE_SCOPE void TkpDestroyButton(TkButton *butPtr);
306306
#endif
307307
#ifndef TkpDisplayButton
308308
MODULE_SCOPE void TkpDisplayButton(void *clientData);

generic/tkConfig.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ typedef struct TkOption {
7070
const Tk_OptionSpec *specPtr;
7171
/* The original spec from the template passed
7272
* to Tk_CreateOptionTable.*/
73-
Tk_Uid dbNameUID; /* The Uid form of the option database
73+
Tk_Uid dbNameUID; /* The Uid form of the option database
7474
* name. */
7575
Tk_Uid dbClassUID; /* The Uid form of the option database class
7676
* name. */
@@ -1397,7 +1397,7 @@ int
13971397
Tk_SetOptions(
13981398
Tcl_Interp *interp, /* Interpreter for error reporting. If NULL,
13991399
* then no error message is returned.*/
1400-
void *recordPtr, /* The record to configure. */
1400+
void *recordPtr, /* The record to configure. */
14011401
Tk_OptionTable optionTable, /* Describes valid options. */
14021402
Tcl_Size objc, /* The number of elements in objv. */
14031403
Tcl_Obj *const objv[], /* Contains one or more name-value pairs. */

generic/tkMenubutton.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@ ConfigureMenuButton(
561561
}
562562
if (padY < 0) {
563563
padY = 0;
564-
Tcl_DecrRefCount(mbPtr->padYObj);
564+
Tcl_DecrRefCount(mbPtr->padYObj);
565565
mbPtr->padYObj = Tcl_NewIntObj(0);
566566
Tcl_IncrRefCount(mbPtr->padYObj);
567567
}

generic/tkMenubutton.h

+10-10
Original file line numberDiff line numberDiff line change
@@ -159,15 +159,15 @@ typedef struct {
159159
* whether the menubutton should show both an
160160
* image and text, and, if so, how. */
161161
enum direction direction; /* Direction for where to pop the menu. Valid
162-
* directions are "above", "below", "flush",
163-
* "left", and "right". "above" and "below"
164-
* will attempt to pop the menu completely
165-
* above or below the menu respectively.
166-
* "flush" means that the upper left corner
167-
* of the menubutton is where the menu pops up.
168-
* "left" and "right" will pop the menu left
169-
* or right, and the active item will be next
170-
* to the button. */
162+
* directions are "above", "below", "flush",
163+
* "left", and "right". "above" and "below"
164+
* will attempt to pop the menu completely
165+
* above or below the menu respectively.
166+
* "flush" means that the upper left corner
167+
* of the menubutton is where the menu pops up.
168+
* "left" and "right" will pop the menu left
169+
* or right, and the active item will be next
170+
* to the button. */
171171
Tk_Cursor cursor; /* Current cursor for window, or NULL. */
172172
Tcl_Obj *takeFocusObj; /* Value of -takefocus option; not used in the
173173
* C code, but used by keyboard traversal
@@ -208,7 +208,7 @@ typedef struct {
208208
MODULE_SCOPE void TkpComputeMenuButtonGeometry(TkMenuButton *mbPtr);
209209
MODULE_SCOPE TkMenuButton *TkpCreateMenuButton(Tk_Window tkwin);
210210
MODULE_SCOPE void TkpDisplayMenuButton(void *clientData);
211-
MODULE_SCOPE void TkpDestroyMenuButton(TkMenuButton *mbPtr);
211+
MODULE_SCOPE void TkpDestroyMenuButton(TkMenuButton *mbPtr);
212212
MODULE_SCOPE void TkMenuButtonWorldChanged(void *instanceData);
213213

214214
#endif /* _TKMENUBUTTON */

0 commit comments

Comments
 (0)