diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2019-08-01 19:22:27 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2019-08-01 19:24:33 -0400 |
commit | 5964fb7e3a3c43db34e8a85df3332da0117e3336 (patch) | |
tree | b65f7956aa29c7645f06da36ecb0443e531f7a94 /src/Object.c | |
parent | 727195e741cb4de851870efc92232d66dcd5a8f0 (diff) |
improved the script used for typedef-options with indent, updated indentation
Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
Diffstat (limited to 'src/Object.c')
-rw-r--r-- | src/Object.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Object.c b/src/Object.c index bf23a29..843ff7d 100644 --- a/src/Object.c +++ b/src/Object.c @@ -126,7 +126,7 @@ externaldef(objectclassrec) ObjectClassRec objectClassRec = { /* *INDENT-ON* */ externaldef(objectClass) -WidgetClass objectClass = (WidgetClass) & objectClassRec; +WidgetClass objectClass = (WidgetClass) &objectClassRec; /* * Start of object routines. @@ -262,7 +262,7 @@ ObjectSetValues(Widget old, Widget request _X_UNUSED, Widget widget, ArgList args _X_UNUSED, - Cardinal * num_args _X_UNUSED) + Cardinal *num_args _X_UNUSED) { CallbackTable offsets; int i; @@ -282,7 +282,7 @@ ObjectSetValues(Widget old, if (*ol != NULL) XtFree((char *) *ol); if (*nl != NULL) - *nl = _XtCompileCallbackList((XtCallbackList) * nl); + *nl = _XtCompileCallbackList((XtCallbackList) *nl); } } UNLOCK_PROCESS; |