diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-29 22:13:30 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-29 22:13:30 +0100 |
commit | d25c16e2f2776d50245bf31d6e4d5364f12d188e (patch) | |
tree | 8eefb6b460409f4d5351bd7fa4cac4ea032714b3 /src/gui_beval.c | |
parent | f28dbcea371b3a35727d91afc90fb90e0527d78a (diff) | |
download | vim-git-d25c16e2f2776d50245bf31d6e4d5364f12d188e.tar.gz |
patch 7.4.1197v7.4.1197
Problem: Still using __ARGS.
Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
Diffstat (limited to 'src/gui_beval.c')
-rw-r--r-- | src/gui_beval.c | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/src/gui_beval.c b/src/gui_beval.c index b3e51fb84..1aeb5c86d 100644 --- a/src/gui_beval.c +++ b/src/gui_beval.c @@ -160,26 +160,26 @@ static BalloonEval *current_beval = NULL; #endif #ifdef FEAT_GUI_GTK -static void addEventHandler __ARGS((GtkWidget *, BalloonEval *)); -static void removeEventHandler __ARGS((BalloonEval *)); -static gint target_event_cb __ARGS((GtkWidget *, GdkEvent *, gpointer)); -static gint mainwin_event_cb __ARGS((GtkWidget *, GdkEvent *, gpointer)); -static void pointer_event __ARGS((BalloonEval *, int, int, unsigned)); -static void key_event __ARGS((BalloonEval *, unsigned, int)); -static gint timeout_cb __ARGS((gpointer)); -static gint balloon_expose_event_cb __ARGS((GtkWidget *, GdkEventExpose *, gpointer)); +static void addEventHandler(GtkWidget *, BalloonEval *); +static void removeEventHandler(BalloonEval *); +static gint target_event_cb(GtkWidget *, GdkEvent *, gpointer); +static gint mainwin_event_cb(GtkWidget *, GdkEvent *, gpointer); +static void pointer_event(BalloonEval *, int, int, unsigned); +static void key_event(BalloonEval *, unsigned, int); +static gint timeout_cb(gpointer); +static gint balloon_expose_event_cb(GtkWidget *, GdkEventExpose *, gpointer); #else -static void addEventHandler __ARGS((Widget, BalloonEval *)); -static void removeEventHandler __ARGS((BalloonEval *)); -static void pointerEventEH __ARGS((Widget, XtPointer, XEvent *, Boolean *)); -static void pointerEvent __ARGS((BalloonEval *, XEvent *)); -static void timerRoutine __ARGS((XtPointer, XtIntervalId *)); +static void addEventHandler(Widget, BalloonEval *); +static void removeEventHandler(BalloonEval *); +static void pointerEventEH(Widget, XtPointer, XEvent *, Boolean *); +static void pointerEvent(BalloonEval *, XEvent *); +static void timerRoutine(XtPointer, XtIntervalId *); #endif -static void cancelBalloon __ARGS((BalloonEval *)); -static void requestBalloon __ARGS((BalloonEval *)); -static void drawBalloon __ARGS((BalloonEval *)); -static void undrawBalloon __ARGS((BalloonEval *beval)); -static void createBalloonEvalWindow __ARGS((BalloonEval *)); +static void cancelBalloon(BalloonEval *); +static void requestBalloon(BalloonEval *); +static void drawBalloon(BalloonEval *); +static void undrawBalloon(BalloonEval *beval); +static void createBalloonEvalWindow(BalloonEval *); |