summaryrefslogtreecommitdiffstats
path: root/src/gui.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2009-05-21 21:27:43 +0000
committerBram Moolenaar <Bram@vim.org>2009-05-21 21:27:43 +0000
commit4bdbbf706634d8ab4b84801f0a30fd4eacbc901c (patch)
tree6a02da9fb455ef18bdcf4fdcf7ce56555018ac83 /src/gui.c
parent32f31b1a0ff304c10136ae9b49bb15981e8bb935 (diff)
updated for version 7.2-184v7.2.184
Diffstat (limited to 'src/gui.c')
-rw-r--r--src/gui.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gui.c b/src/gui.c
index a80c9aa7a6..9c6e29c14b 100644
--- a/src/gui.c
+++ b/src/gui.c
@@ -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;