From 3da855c8e28140d9f02b1572e445f8d4f977cf64 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 21 Oct 2020 12:38:00 +0200 Subject: patch 8.2.1875: warning when building GTK gui Problem: Warning when building GTK gui. Solution: Add missing function parameter. --- src/gui_gtk_f.c | 4 ++-- src/version.c | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/gui_gtk_f.c b/src/gui_gtk_f.c index 2a9e5a0872..4d0290cb6f 100644 --- a/src/gui_gtk_f.c +++ b/src/gui_gtk_f.c @@ -51,7 +51,7 @@ struct _GtkFormChild static void gtk_form_class_init(GtkFormClass *klass); -static void gtk_form_init(GtkForm *form); +static void gtk_form_init(GtkForm *form, void *g_class); static void gtk_form_realize(GtkWidget *widget); static void gtk_form_unrealize(GtkWidget *widget); @@ -270,7 +270,7 @@ gtk_form_class_init(GtkFormClass *klass) } static void -gtk_form_init(GtkForm *form) +gtk_form_init(GtkForm *form, void *g_class UNUSED) { #if GTK_CHECK_VERSION(3,0,0) gtk_widget_set_has_window(GTK_WIDGET(form), TRUE); diff --git a/src/version.c b/src/version.c index 2b02d486a7..8e5c08f5b2 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1875, /**/ 1874, /**/ -- cgit v1.2.3