From e7c9bd32fd072fe0fd12100614ab3f393b2f9a18 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 21 Apr 2021 08:32:37 +0200 Subject: [PATCH] Fix return type of GtkSpinButton "output" signal handler This doesn't seem to change anything in practice, but still use the correct return type. Co-Authored-By: Paul Cornett --- src/gtk/spinctrl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gtk/spinctrl.cpp b/src/gtk/spinctrl.cpp index a48917547d..2c665ae55e 100644 --- a/src/gtk/spinctrl.cpp +++ b/src/gtk/spinctrl.cpp @@ -88,7 +88,7 @@ wx_gtk_spin_input(GtkSpinButton*, gdouble* val, wxSpinCtrlGTKBase* win) return FALSE; } -static gint +static gboolean wx_gtk_spin_output(GtkSpinButton* spin, wxSpinCtrlGTKBase* win) { wxString text;