expander: Remove a pointless return

GtkDropControllerMotion::enter does not expect
a boolean return value, so don't provide one.
This commit is contained in:
Matthias Clasen 2020-06-19 14:15:55 -04:00
parent 9555e611e1
commit f054c317ee

View File

@ -231,7 +231,7 @@ expand_timeout (gpointer data)
return FALSE;
}
static gboolean
static void
gtk_expander_drag_enter (GtkDropControllerMotion *motion,
double x,
double y,
@ -242,8 +242,6 @@ gtk_expander_drag_enter (GtkDropControllerMotion *motion,
expander->expand_timer = g_timeout_add (TIMEOUT_EXPAND, (GSourceFunc) expand_timeout, expander);
g_source_set_name_by_id (expander->expand_timer, "[gtk] expand_timeout");
}
return TRUE;
}
static void