Last of the spelling fixed
This commit is contained in:
@@ -342,7 +342,7 @@ $ 238 Boolean operator AND
|
||||
265 "Attach Graphic"
|
||||
|
||||
$ 270 "..." is a button label indicating a list from which an
|
||||
$ entry may be selected to fill a preceeding text field.
|
||||
$ entry may be selected to fill a preceding text field.
|
||||
$ In this case, the user may enter a path into a text field
|
||||
$ or activate the button with "..." to be presented with
|
||||
$ a File Selection Box. The object is to select an Infolib
|
||||
|
||||
@@ -103,7 +103,7 @@ struct MarkSelectionChanged
|
||||
Data for positional restore:
|
||||
(for now just offset and length for simplicity)
|
||||
|
||||
preceeding locator
|
||||
preceding locator
|
||||
offset
|
||||
first n characters
|
||||
length
|
||||
|
||||
@@ -879,7 +879,7 @@ DoPrint(Widget widget, AppPrintData * p)
|
||||
|
||||
XSync(XtDisplay(p->f_print_shell), False);
|
||||
|
||||
// if a print server error occured then notify the user
|
||||
// if a print server error occurred then notify the user
|
||||
|
||||
if (print_server_error) {
|
||||
|
||||
|
||||
@@ -1798,7 +1798,7 @@ SearchScopeAgent::update_current_scope()
|
||||
|
||||
// Rebuild the scope list after an infolib is added or removed.
|
||||
// Then update the option menu to reflect changes that may
|
||||
// have occured in the scope list.
|
||||
// have occurred in the scope list.
|
||||
//
|
||||
void
|
||||
SearchScopeAgent::rebuild_scope_list()
|
||||
@@ -1846,7 +1846,7 @@ SearchScopeAgent::rebuild_scope_list()
|
||||
}
|
||||
|
||||
// Update the option menu to reflect any changes
|
||||
// that may have occured in the list of named scopes due
|
||||
// that may have occurred in the list of named scopes due
|
||||
// to addition or removal of infolibs.
|
||||
// Update current scope.
|
||||
void
|
||||
|
||||
@@ -549,7 +549,7 @@ MessageMgr::assert_failed (char *statement, char *file,
|
||||
char buffer[512];
|
||||
|
||||
snprintf (buffer, sizeof(buffer),
|
||||
"An internal error has occured.\n\
|
||||
"An internal error has occurred.\n\
|
||||
The current operation cannot be completed.\n\
|
||||
Please file a bug report with this information:\n\
|
||||
Assertion failed: %s\n\
|
||||
|
||||
@@ -343,7 +343,7 @@ Highlight::underline(unsigned int v)
|
||||
|
||||
class PartialElementFeatures
|
||||
{
|
||||
// element features acceptible by prefix and suffix
|
||||
// element features acceptable by prefix and suffix
|
||||
public:
|
||||
PartialElementFeatures(CanvasRenderer *);
|
||||
PartialElementFeatures (PartialElementFeatures &);
|
||||
|
||||
@@ -535,7 +535,7 @@ xevent_error_aborter(Display *display, XErrorEvent* error_event)
|
||||
_DtPrintDefaultErrorSafe(display, error_event, error_msg, _DTINFO_BUFSIZE);
|
||||
_DtSimpleError((char*)"dtinfo", DtWarning, NULL, error_msg, NULL);
|
||||
|
||||
// if the error occured on the print display we're going to set
|
||||
// if the error occurred on the print display we're going to set
|
||||
// a variable so that and when the job is done, right before calling
|
||||
// XpEndJob, we call XpCancelJob, and notify the user.
|
||||
|
||||
|
||||
@@ -386,7 +386,7 @@ QueryTermView::register_actions()
|
||||
XmNbottomShadowColor, bottom_shadow, \
|
||||
NULL);
|
||||
|
||||
// TODO: set colors for text fields seperately (for when bg is different)
|
||||
// TODO: set colors for text fields separately (for when bg is different)
|
||||
|
||||
void
|
||||
QueryTermView::invert_colors()
|
||||
|
||||
@@ -401,7 +401,7 @@ ActivateCommon (Widget w, XEvent *event, String *params, Cardinal *num_params)
|
||||
internal_expose = True;
|
||||
(*(XtClass(w))->core_class.expose) (w, event, (Region) NULL);
|
||||
|
||||
/* If the event was a button event, make sure it occured within
|
||||
/* If the event was a button event, make sure it occurred within
|
||||
the tab. (The user could have released outside the tab.) */
|
||||
if (event->type != ButtonRelease ||
|
||||
(event->xbutton.x >= (int) -bw &&
|
||||
|
||||
@@ -438,7 +438,7 @@ $ 238 Boolean operator AND
|
||||
|
||||
|
||||
$ 270 "..." is a button label indicating a list from which an
|
||||
$ entry may be selected to fill a preceeding text field.
|
||||
$ entry may be selected to fill a preceding text field.
|
||||
$ In this case, the user may enter a path into a text field
|
||||
$ or activate the button with "..." to be presented with
|
||||
$ a File Selection Box. The object is to select an Infolib
|
||||
|
||||
@@ -439,7 +439,7 @@ void DBCursor::string_field(FILE *fp, char **out, int *lenOut)
|
||||
int len = 0;
|
||||
int io;
|
||||
|
||||
/* fscanf is wierd, so we do it ourselves... */
|
||||
/* fscanf is weird, so we do it ourselves... */
|
||||
while(isdigit(io = fgetc(fp))){
|
||||
len = len * 10 + (io - '0');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user