diff options
author | Bram Moolenaar <Bram@vim.org> | 2007-05-10 18:25:20 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2007-05-10 18:25:20 +0000 |
commit | ccc18222dd2b40397536703923842f026a6141f0 (patch) | |
tree | 5ebf27663225d11e70f382e51236b9f3f9890ed4 /src/gui_photon.c | |
parent | 2c7a763832663d5878ff37a58c81fbe95527084a (diff) | |
download | vim-git-ccc18222dd2b40397536703923842f026a6141f0.tar.gz |
updated for version 7.1b
Diffstat (limited to 'src/gui_photon.c')
-rw-r--r-- | src/gui_photon.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui_photon.c b/src/gui_photon.c index 3408ba6e7..a8ee1c409 100644 --- a/src/gui_photon.c +++ b/src/gui_photon.c @@ -288,7 +288,7 @@ gui_ph_handle_menu_resize( height = sizes->new_dim.h; - /* Because vim treats the toolbar and menubar separatly, + /* Because vim treats the toolbar and menubar separately, * and here they're lumped together into a PtToolbarGroup, * we only need either menu_height or toolbar_height set at once */ if( gui.menu_is_active ) @@ -740,7 +740,7 @@ gui_ph_handle_raw_draw( PtWidget_t *widget, PhTile_t *damage ) #if 0 /* - * This causes some wierd probems, with drawing being done from + * This causes some weird problems, with drawing being done from * within this raw drawing function (rather than just simple clearing * and text drawing done by gui_redraw) * @@ -1116,7 +1116,7 @@ gui_mch_init(void) PtArg_t args[10]; int flags = 0, n = 0; - PhDim_t window_size = {100, 100}; /* Abitrary values */ + PhDim_t window_size = {100, 100}; /* Arbitrary values */ PhPoint_t pos = {0, 0}; gui.event_buffer = (PhEvent_t *) alloc( EVENT_BUFFER_SIZE ); @@ -1978,7 +1978,7 @@ hex_digit(int c) /* - * This should be split out into a seperate file, + * This should be split out into a separate file, * every port does basically the same thing. * * This is the gui_w32.c version (i think..) |