From c951522943fc7c1eedaa707d2fa06da5ca17545a Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 10 Jan 2019 22:56:30 +0100 Subject: patch 8.1.0714: unessesary #if lines in GTK code Problem: Unessesary #if lines in GTK code. Solution: Remove the #if. (Ken Takata, closes #3785) --- src/gui_beval.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/gui_beval.c') diff --git a/src/gui_beval.c b/src/gui_beval.c index 8b90362d7..b3d8e6cf7 100644 --- a/src/gui_beval.c +++ b/src/gui_beval.c @@ -60,11 +60,7 @@ 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); -# if GTK_CHECK_VERSION(3,0,0) static gboolean timeout_cb(gpointer); -# else -static gint timeout_cb(gpointer); -# endif # if GTK_CHECK_VERSION(3,0,0) static gboolean balloon_draw_event_cb (GtkWidget *, cairo_t *, gpointer); # else @@ -444,11 +440,7 @@ key_event(BalloonEval *beval, unsigned keyval, int is_keypress) cancelBalloon(beval); } -# if GTK_CHECK_VERSION(3,0,0) static gboolean -# else - static gint -# endif timeout_cb(gpointer data) { BalloonEval *beval = (BalloonEval *)data; -- cgit v1.2.1