comparison src/gui_beval.c @ 7801:a1e71a01dbd6 v7.4.1197

commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jan 29 22:13:30 2016 +0100 patch 7.4.1197 Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
author Christian Brabandt <cb@256bit.org>
date Fri, 29 Jan 2016 22:15:05 +0100
parents 488bb7c4ace0
children 1a5d34492798
comparison
equal deleted inserted replaced
7800:a835f2222ce6 7801:a1e71a01dbd6
158 */ 158 */
159 static BalloonEval *current_beval = NULL; 159 static BalloonEval *current_beval = NULL;
160 #endif 160 #endif
161 161
162 #ifdef FEAT_GUI_GTK 162 #ifdef FEAT_GUI_GTK
163 static void addEventHandler __ARGS((GtkWidget *, BalloonEval *)); 163 static void addEventHandler(GtkWidget *, BalloonEval *);
164 static void removeEventHandler __ARGS((BalloonEval *)); 164 static void removeEventHandler(BalloonEval *);
165 static gint target_event_cb __ARGS((GtkWidget *, GdkEvent *, gpointer)); 165 static gint target_event_cb(GtkWidget *, GdkEvent *, gpointer);
166 static gint mainwin_event_cb __ARGS((GtkWidget *, GdkEvent *, gpointer)); 166 static gint mainwin_event_cb(GtkWidget *, GdkEvent *, gpointer);
167 static void pointer_event __ARGS((BalloonEval *, int, int, unsigned)); 167 static void pointer_event(BalloonEval *, int, int, unsigned);
168 static void key_event __ARGS((BalloonEval *, unsigned, int)); 168 static void key_event(BalloonEval *, unsigned, int);
169 static gint timeout_cb __ARGS((gpointer)); 169 static gint timeout_cb(gpointer);
170 static gint balloon_expose_event_cb __ARGS((GtkWidget *, GdkEventExpose *, gpointer)); 170 static gint balloon_expose_event_cb(GtkWidget *, GdkEventExpose *, gpointer);
171 #else 171 #else
172 static void addEventHandler __ARGS((Widget, BalloonEval *)); 172 static void addEventHandler(Widget, BalloonEval *);
173 static void removeEventHandler __ARGS((BalloonEval *)); 173 static void removeEventHandler(BalloonEval *);
174 static void pointerEventEH __ARGS((Widget, XtPointer, XEvent *, Boolean *)); 174 static void pointerEventEH(Widget, XtPointer, XEvent *, Boolean *);
175 static void pointerEvent __ARGS((BalloonEval *, XEvent *)); 175 static void pointerEvent(BalloonEval *, XEvent *);
176 static void timerRoutine __ARGS((XtPointer, XtIntervalId *)); 176 static void timerRoutine(XtPointer, XtIntervalId *);
177 #endif 177 #endif
178 static void cancelBalloon __ARGS((BalloonEval *)); 178 static void cancelBalloon(BalloonEval *);
179 static void requestBalloon __ARGS((BalloonEval *)); 179 static void requestBalloon(BalloonEval *);
180 static void drawBalloon __ARGS((BalloonEval *)); 180 static void drawBalloon(BalloonEval *);
181 static void undrawBalloon __ARGS((BalloonEval *beval)); 181 static void undrawBalloon(BalloonEval *beval);
182 static void createBalloonEvalWindow __ARGS((BalloonEval *)); 182 static void createBalloonEvalWindow(BalloonEval *);
183 183
184 184
185 185
186 /* 186 /*
187 * Create a balloon-evaluation area for a Widget. 187 * Create a balloon-evaluation area for a Widget.