diff options
author | Tor Lillqvist <tml@iki.fi> | 2009-10-23 13:40:27 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2009-10-23 13:40:27 +0300 |
commit | 861c34b01ef22f9dfc482929b133977657c0b76b (patch) | |
tree | 94b56e6037f49a76d8783885c694e27af2c76b63 | |
parent | 8e945e0e3f1c7df4cb0873cc248181e03dcdc9ce (diff) | |
download | gtk+-861c34b01ef22f9dfc482929b133977657c0b76b.tar.gz |
Use correct type text/uri-list for the dropped files selection
Fixes bug #599321.
-rw-r--r-- | gdk/win32/gdkselection-win32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk/win32/gdkselection-win32.c b/gdk/win32/gdkselection-win32.c index bf87ad7040..dea0aa11f4 100644 --- a/gdk/win32/gdkselection-win32.c +++ b/gdk/win32/gdkselection-win32.c @@ -810,7 +810,7 @@ gdk_selection_convert (GdkWindow *requestor, if (dropfiles_prop != NULL) { selection_property_store - (requestor, selection, dropfiles_prop->format, + (requestor, dropfiles_prop->type, dropfiles_prop->format, dropfiles_prop->data, dropfiles_prop->length); g_free (dropfiles_prop); dropfiles_prop = NULL; |