diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-11-16 16:21:05 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-11-16 16:21:05 +0100 |
commit | c4568ab37edc01e01f258d64bceddcd01633a268 (patch) | |
tree | 8ae92c661dad3bde1055513daa15ce703d3632f7 /src/gui_motif.c | |
parent | f0d58efc9dc46be37c629cbc99b4125448ca39fd (diff) | |
download | vim-git-c4568ab37edc01e01f258d64bceddcd01633a268.tar.gz |
patch 8.1.0528: various typos in commentsv8.1.0528
Problem: Various typos in comments.
Solution: Fix the typos.
Diffstat (limited to 'src/gui_motif.c')
-rw-r--r-- | src/gui_motif.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/gui_motif.c b/src/gui_motif.c index da97f1f49..8467c529d 100644 --- a/src/gui_motif.c +++ b/src/gui_motif.c @@ -1114,7 +1114,7 @@ gui_mch_compute_menu_height( XtManageChild(id); /* - * Now find the menu item that is the furthest down, and get it's position. + * Now find the menu item that is the furthest down, and get its position. */ maxy = 0; for (mp = root_menu; mp != NULL; mp = mp->next) @@ -1550,7 +1550,7 @@ submenu_change( XtSetValues(mp->id, args, n); } # ifdef FEAT_BEVAL_GUI - /* If we have a tooltip, then we need to change it's font */ + /* If we have a tooltip, then we need to change its font */ if (mp->tip != NULL) { Arg args[2]; @@ -1568,7 +1568,7 @@ submenu_change( { gui_motif_menu_fontlist(mp->id); #ifdef FEAT_BEVAL_GUI - /* If we have a tooltip, then we need to change it's font */ + /* If we have a tooltip, then we need to change its font */ if (mp->tip != NULL) { Arg args[1]; @@ -2089,7 +2089,7 @@ set_fontlist(Widget id) { XtUnmanageChild(id); XtVaSetValues(id, XmNfontList, fl, NULL); - /* We should force the widget to recalculate it's + /* We should force the widget to recalculate its * geometry now. */ XtManageChild(id); } @@ -2108,7 +2108,7 @@ set_fontlist(Widget id) { XtUnmanageChild(id); XtVaSetValues(id, XmNfontList, fl, NULL); - /* We should force the widget to recalculate it's + /* We should force the widget to recalculate its * geometry now. */ XtManageChild(id); } @@ -3407,7 +3407,7 @@ gui_motif_menu_fontlist(Widget id UNUSED) { XtUnmanageChild(id); XtVaSetValues(id, XmNfontList, fl, NULL); - /* We should force the widget to recalculate it's + /* We should force the widget to recalculate its * geometry now. */ XtManageChild(id); } @@ -3428,7 +3428,7 @@ gui_motif_menu_fontlist(Widget id UNUSED) { XtUnmanageChild(id); XtVaSetValues(id, XmNfontList, fl, NULL); - /* We should force the widget to recalculate it's + /* We should force the widget to recalculate its * geometry now. */ XtManageChild(id); } |