Fix signedness warning in midori_view_tab_label_data_received
This commit is contained in:
parent
a9a220f96c
commit
474358d972
1 changed files with 1 additions and 1 deletions
|
@ -4890,7 +4890,7 @@ static void midori_view_tab_label_data_received (GtkWidget* widget,
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
text = gtk_selection_data_get_text (data);
|
text = (gchar*) gtk_selection_data_get_text (data);
|
||||||
midori_view_set_uri (view, text);
|
midori_view_set_uri (view, text);
|
||||||
g_free (text);
|
g_free (text);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue