From df4b871718c0edfbf5b27095fc869f717011dfc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A0=D1=83=D1=81=D0=BB=D0=B0=D0=BD=20=D0=98=D0=B6=D0=B1?= =?UTF-8?q?=D1=83=D0=BB=D0=B0=D1=82=D0=BE=D0=B2?= Date: Tue, 12 Jan 2010 18:32:39 +0300 Subject: [PATCH] [413/906] Fix Windows compiler warning in test/examples/gtk/fxtest/pixbufdrop.c --- tests/examples/gtk/fxtest/pixbufdrop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/examples/gtk/fxtest/pixbufdrop.c b/tests/examples/gtk/fxtest/pixbufdrop.c index cd7f175880..c2a87161c9 100644 --- a/tests/examples/gtk/fxtest/pixbufdrop.c +++ b/tests/examples/gtk/fxtest/pixbufdrop.c @@ -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);