Last of the spelling fixed

This commit is contained in:
chase
2018-04-18 04:43:05 -07:00
committed by Jon Trulson
parent 6d3a19d8f9
commit 33d2749ea3
185 changed files with 279 additions and 279 deletions

View File

@@ -698,12 +698,12 @@ void MsgScrollingList::do_list_vis_adjustment()
if (winM <= 0) { //[There is no scope of adjustment
return;
}
//[All the new messages can be accomodated w/o scrolling curr selection
//[All the new messages can be accommodated w/o scrolling curr selection
if (numNew <= winM) {
XmListSetBottomPos(list, cItmCnt);
return;
}
//[All the new messages cannot be accomodated, but we will do best fit
//[All the new messages cannot be accommodated, but we will do best fit
else {
int numNotShow = numNew - winM;
XmListSetBottomPos(list, cItmCnt - numNotShow);

View File

@@ -160,7 +160,7 @@ static int x_error_handler(Display *display, XErrorEvent* error_event)
_DtPrintDefaultErrorSafe(display, error_event, error_msg, _DTMAIL_BUFSIZE);
_DtSimpleError("dtmail", 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.