[413/906] Fix Windows compiler warning in test/examples/gtk/fxtest/pixbufdrop.c

This commit is contained in:
Руслан Ижбулатов 2010-01-12 18:32:39 +03:00 committed by Matthew Waters
parent 757d005662
commit df4b871718

View file

@ -128,7 +128,7 @@ on_drag_data_received (GtkWidget * widget,
{
SourceData *userdata = g_new0 (SourceData, 1);
#ifdef G_OS_WIN32
gchar *filename = g_filename_from_uri (seldata->data, NULL, NULL);
gchar *filename = g_filename_from_uri ((const gchar *) seldata->data, NULL, NULL);
#else
GdkPixbufFormat *format;
gchar **uris = gtk_selection_data_get_uris (seldata);