Pass a return value location when emitting secondary-icon-released
This commit is contained in:
parent
e3b27cb70d
commit
cf9538dd67
1 changed files with 5 additions and 1 deletions
|
@ -605,7 +605,11 @@ midori_location_action_icon_released_cb (GtkWidget* widget,
|
||||||
GtkAction* action)
|
GtkAction* action)
|
||||||
{
|
{
|
||||||
if (icon_pos == GTK_ICON_ENTRY_SECONDARY)
|
if (icon_pos == GTK_ICON_ENTRY_SECONDARY)
|
||||||
g_signal_emit (action, signals[SECONDARY_ICON_RELEASED], 0, widget);
|
{
|
||||||
|
gboolean result;
|
||||||
|
g_signal_emit (action, signals[SECONDARY_ICON_RELEASED], 0,
|
||||||
|
widget, &result);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Reference in a new issue