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_athena.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_athena.c')
-rw-r--r-- | src/gui_athena.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui_athena.c b/src/gui_athena.c index 155509d1f..3620e65c9 100644 --- a/src/gui_athena.c +++ b/src/gui_athena.c @@ -900,7 +900,7 @@ gui_athena_menu_font(Widget id) { XtUnmanageChild(id); XtVaSetValues(id, XtNfontSet, gui.menu_fontset, NULL); - /* We should force the widget to recalculate it's + /* We should force the widget to recalculate its * geometry now. */ XtManageChild(id); } @@ -929,7 +929,7 @@ gui_athena_menu_font(Widget id) if (has_submenu(id)) XtVaSetValues(id, XtNrightBitmap, pullerBitmap, NULL); - /* Force the widget to recalculate it's geometry now. */ + /* Force the widget to recalculate its geometry now. */ if (managed) XtManageChild(id); } @@ -989,7 +989,7 @@ gui_mch_new_menu_font(void) } } /* Now, to simulate the window being resized. Only, this - * will resize the window to it's current state. + * will resize the window to its current state. * * There has to be a better way, but I do not see one at this time. * (David Harrison) @@ -1071,7 +1071,7 @@ gui_mch_submenu_change( } # ifdef FEAT_BEVAL_GUI - /* If we have a tooltip, then we need to change it's colors */ + /* If we have a tooltip, then we need to change its colors */ if (mp->tip != NULL) { Arg args[2]; @@ -1089,7 +1089,7 @@ gui_mch_submenu_change( { gui_athena_menu_font(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 */ /* Assume XtNinternational == True (in createBalloonEvalWindow) */ if (mp->tip != NULL) @@ -1552,7 +1552,7 @@ gui_mch_destroy_menu(vimmenu_T *menu) * This is a hack to stop the Athena simpleMenuWidget from getting a * BadValue error when a menu's last child is destroyed. We check to * see if this is the last child and if so, don't delete it. The parent - * will be deleted soon anyway, and it will delete it's children like + * will be deleted soon anyway, and it will delete its children like * all good widgets do. */ /* NOTE: The cause of the BadValue X Protocol Error is because when the |