Spelling fixes

This commit is contained in:
chase
2018-05-26 11:50:47 -05:00
committed by Jon Trulson
parent 8d2fe2486c
commit 809c3d8bb6
146 changed files with 240 additions and 240 deletions

View File

@@ -245,7 +245,7 @@
:type :choice
:choice-type :nonexclusive
:label-type :string
:label "Resizeable:"
:label "Resizable:"
:label-position :west
:num-columns 1
:orientation :vertical

View File

@@ -303,7 +303,7 @@ $ ** You can edit this comment and add comments below each message.
6 "Parent:"
7 "parent obj"
8 "Object1"
9 "Resizeable:"
9 "Resizable:"
10 "Attach To:"
11 "Offset:"
12 "Percentage:"
@@ -1468,7 +1468,7 @@ $ ** You can edit this comment and add comments below each message.
31 "Cancel"
32 "None"
33 " "
34 "The Action3 button is specified as the\ndefault button, but it is not specfied\nto exist in the message dialog."
34 "The Action3 button is specified as the\ndefault button, but it is not specified\nto exist in the message dialog."
35 "A string must be entered for the Action3 button."
36 "Apply Changes"
37 "No buttons are specified to exist in\nthe message dialog. There must be \nat least one button in the message."

View File

@@ -1021,7 +1021,7 @@
:type :message
:message-type :error
:label "Application Builder"
:message "The Action3 button is specified as the\ndefault button, but it is not specfied\nto exist in the message dialog."
:message "The Action3 button is specified as the\ndefault button, but it is not specified\nto exist in the message dialog."
:action1-label "OK"
:cancel-button :false
:help-button :true

View File

@@ -1088,7 +1088,7 @@ import_uil(
return;
}
else
fprintf(stderr, "Succesfully imported %s.\n", uil_file_name);
fprintf(stderr, "Successfully imported %s.\n", uil_file_name);
obj_set_flag(project, SaveNeededFlag);

View File

@@ -1997,7 +1997,7 @@ prop_graphic_filename_ok(
util_file_name_has_extension(filename, "xbm"))
{
ext = strrchr(filebase, '.');
ext[0] = '\0'; /* strip off extenstion */
ext[0] = '\0'; /* strip off extension */
util_set_help_data(catgets(Dtb_project_catd, 100, 117,
"The graphic file name extension should not be included\nwhen it is specified in the Graphic Filename field."), NULL, NULL);

View File

@@ -1152,7 +1152,7 @@ abmf_usage(void)
fprintf(stderr, "%s", catgets(Dtb_project_catd, 1, 17,
"Files with extension .bip are assumend to be BIL project files, files with\n"));
fprintf(stderr, "%s", catgets(Dtb_project_catd, 1, 18,
".bix extenstion are assumed to be encapsulated BIL files, and files\n"));
".bix extension are assumed to be encapsulated BIL files, and files\n"));
fprintf(stderr, "%s", catgets(Dtb_project_catd, 1, 19,
"With a .bil extension are assumed to be BIL module files.\n\n"));

View File

@@ -24,7 +24,7 @@ $set 1
15 "file is specified, a project file containing the specified module(s) is\n"
16 "searched for in the current directory.\n\n"
17 "Files with extension .bip are assumend to be BIL project files, files with\n"
18 ".bix extenstion are assumed to be encapsulated BIL files, and files\n"
18 ".bix extension are assumed to be encapsulated BIL files, and files\n"
19 "with a .bil extension are assumed to be BIL module files.\n"
20 "Options (* = default, + = default with no project file):\n"
21 " -help (-h) Print out this help message\n"

View File

@@ -261,7 +261,7 @@ static LibFuncRec abmfP_lrc_set_label_pixmaps =
" }\n"
"\n"
" /*\n"
" * Set the approriate resources.\n"
" * Set the appropriate resources.\n"
" */\n"
" XtVaSetValues(widget, XmNlabelType, XmPIXMAP, NULL);\n"
" if (labelPixmap != 0)\n"
@@ -508,7 +508,7 @@ static LibFuncRec abmfP_lrc_set_label_from_bitmap_data =
/* def */
"/*\n"
" * Sets both the sensitive and insensitve pixmaps\n"
" * Sets both the sensitive and insensitive pixmaps\n"
" */\n"
"int\n"
"dtb_set_label_from_bitmap_data(\n"
@@ -599,7 +599,7 @@ static LibFuncRec abmfP_lrc_set_label_from_xpm_data =
/* def */
"/*\n"
" * Sets both the sensitive and insensitve pixmaps\n"
" * Sets both the sensitive and insensitive pixmaps\n"
" */\n"
"int\n"
"dtb_set_label_from_xpm_data(\n"

View File

@@ -642,7 +642,7 @@ dtb_set_label_pixmaps(
}
/*
* Set the approriate resources.
* Set the appropriate resources.
*/
XtVaSetValues(widget, XmNlabelType, XmPIXMAP, NULL);
if (labelPixmap != NULL)
@@ -802,7 +802,7 @@ dtb_set_label_from_image_file(
/*
* Sets both the sensitive and insensitve pixmaps
* Sets both the sensitive and insensitive pixmaps
*/
int
dtb_set_label_from_bitmap_data(
@@ -877,7 +877,7 @@ dtb_set_label_from_bitmap_data(
/*
* Sets both the sensitive and insensitve pixmaps
* Sets both the sensitive and insensitive pixmaps
*/
int
dtb_set_label_from_xpm_data(

View File

@@ -1124,7 +1124,7 @@ obj_set_resizable(ABObj obj, BOOL resizable)
obj->info.window.resizable = resizable;
return 0;
}
member_error(obj, "resizeable");
member_error(obj, "resizable");
return -1;
}

View File

@@ -1609,7 +1609,7 @@ sig_fault_handler()
/* We should have cleared this to prepare for a mem fault */
/* If not, then something has gone haywire */
static STRING msg = NULL;
msg = "MEMORY ACCESS VIOLATION OCCURED. ABORTING.\n";
msg = "MEMORY ACCESS VIOLATION OCCURRED. ABORTING.\n";
write(2, msg, strlen(msg));
abort();
}