dthelp: Change to ANSI function definitions
[oweals/cde.git] / cde / programs / dtmail / dtmail / MsgScrollingList.C
index 1953188dd89e66e61054ee1bdbbc8b669b4ab319..b8b58aac1a83736ce41546c0b1143980ff30072a 100644 (file)
@@ -16,7 +16,7 @@
  * details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with these librararies and programs; if not, write
+ * License along with these libraries and programs; if not, write
  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
  * Floor, Boston, MA 02110-1301 USA
  */
@@ -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);