diff options
author | Bram Moolenaar <Bram@vim.org> | 2009-05-21 21:27:43 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2009-05-21 21:27:43 +0000 |
commit | 4bdbbf706634d8ab4b84801f0a30fd4eacbc901c (patch) | |
tree | 6a02da9fb455ef18bdcf4fdcf7ce56555018ac83 /src/gui.c | |
parent | 32f31b1a0ff304c10136ae9b49bb15981e8bb935 (diff) | |
download | vim-git-4bdbbf706634d8ab4b84801f0a30fd4eacbc901c.tar.gz |
updated for version 7.2-184v7.2.184
Diffstat (limited to 'src/gui.c')
-rw-r--r-- | src/gui.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -3119,7 +3119,7 @@ static int prev_which_scrollbars[3]; */ void gui_init_which_components(oldval) - char_u *oldval; + char_u *oldval UNUSED; { #ifdef FEAT_MENU static int prev_menu_is_active = -1; @@ -4668,8 +4668,8 @@ gui_mouse_correct() */ static win_T * xy2win(x, y) - int x; - int y; + int x UNUSED; + int y UNUSED; { #ifdef FEAT_WINDOWS int row; @@ -5121,8 +5121,8 @@ gui_wingoto_xy(x, y) */ void gui_handle_drop(x, y, modifiers, fnames, count) - int x; - int y; + int x UNUSED; + int y UNUSED; int_u modifiers; char_u **fnames; int count; |