Fix signedness warning in midori_view_tab_label_data_received

This commit is contained in:
Cyril Brulebois 2011-04-10 05:38:46 +02:00 committed by Christian Dywan
parent a9a220f96c
commit 474358d972

View file

@ -4890,7 +4890,7 @@ static void midori_view_tab_label_data_received (GtkWidget* widget,
}
else
{
text = gtk_selection_data_get_text (data);
text = (gchar*) gtk_selection_data_get_text (data);
midori_view_set_uri (view, text);
g_free (text);
}