Mercurial > vim
changeset 1377:e2f5c1597829 v7.1.092
updated for version 7.1-092
author | vimboss |
---|---|
date | Thu, 30 Aug 2007 10:51:14 +0000 |
parents | 53b2bedccfdf |
children | a4365075d05c |
files | src/gui_mac.c src/version.c |
diffstat | 2 files changed, 5 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/gui_mac.c +++ b/src/gui_mac.c @@ -3149,7 +3149,7 @@ gui_mch_set_winpos(int x, int y) /* TODO: Should make sure the window is move within range * e.g.: y > ~16 [Menu bar], x > 0, x < screen width */ - MoveWindowStructure(gui.VimWindow, x, y, TRUE); + MoveWindowStructure(gui.VimWindow, x, y); } void @@ -5293,7 +5293,7 @@ gui_mch_dialog( short itemType; short useIcon; short width; - short totalButtonWidth = 0; /* the width of all button together + short totalButtonWidth = 0; /* the width of all buttons together including spacing */ short widestButton = 0; short dfltButtonEdge = 20; /* gut feeling */ @@ -5483,7 +5483,7 @@ gui_mch_dialog( { macMoveDialogItem(theDialog, button, buttonItm.box.left, buttonItm.box.top, &box); - /* With vertical, it's better to have all button the same lenght */ + /* With vertical, it's better to have all buttons the same length */ if (vertical) { macSizeDialogItem(theDialog, button, widestButton, 0);