comparison src/gui.c @ 1887:fc89a4f98a8b v7.2.184

updated for version 7.2-184
author vimboss
date Thu, 21 May 2009 21:27:43 +0000
parents 3dd986bfef63
children ff9ecf14efe3
comparison
equal deleted inserted replaced
1886:11472bbcdb6e 1887:fc89a4f98a8b
3117 * If "oldval" is not NULL, "oldval" is the previous value, the new value is 3117 * If "oldval" is not NULL, "oldval" is the previous value, the new value is
3118 * in p_go. 3118 * in p_go.
3119 */ 3119 */
3120 void 3120 void
3121 gui_init_which_components(oldval) 3121 gui_init_which_components(oldval)
3122 char_u *oldval; 3122 char_u *oldval UNUSED;
3123 { 3123 {
3124 #ifdef FEAT_MENU 3124 #ifdef FEAT_MENU
3125 static int prev_menu_is_active = -1; 3125 static int prev_menu_is_active = -1;
3126 #endif 3126 #endif
3127 #ifdef FEAT_TOOLBAR 3127 #ifdef FEAT_TOOLBAR
4666 /* 4666 /*
4667 * Find window where the mouse pointer "y" coordinate is in. 4667 * Find window where the mouse pointer "y" coordinate is in.
4668 */ 4668 */
4669 static win_T * 4669 static win_T *
4670 xy2win(x, y) 4670 xy2win(x, y)
4671 int x; 4671 int x UNUSED;
4672 int y; 4672 int y UNUSED;
4673 { 4673 {
4674 #ifdef FEAT_WINDOWS 4674 #ifdef FEAT_WINDOWS
4675 int row; 4675 int row;
4676 int col; 4676 int col;
4677 win_T *wp; 4677 win_T *wp;
5119 * of dropped files, they will be freed in this function, and caller can't use 5119 * of dropped files, they will be freed in this function, and caller can't use
5120 * fnames after call this function. 5120 * fnames after call this function.
5121 */ 5121 */
5122 void 5122 void
5123 gui_handle_drop(x, y, modifiers, fnames, count) 5123 gui_handle_drop(x, y, modifiers, fnames, count)
5124 int x; 5124 int x UNUSED;
5125 int y; 5125 int y UNUSED;
5126 int_u modifiers; 5126 int_u modifiers;
5127 char_u **fnames; 5127 char_u **fnames;
5128 int count; 5128 int count;
5129 { 5129 {
5130 int i; 5130 int i;