diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | lib/widgets/ephy-node-view.c | 2 | ||||
-rw-r--r-- | src/ephy-notebook.c | 2 |
3 files changed, 9 insertions, 2 deletions
@@ -1,3 +1,10 @@ +2004-10-23 Christian Persch <chpe@cvs.gnome.org> + + * lib/widgets/ephy-node-view.c: (drag_data_received_cb): + * src/ephy-notebook.c: (notebook_drag_data_received_cb): + + Use gtk_selection_data_get_uris(). + 2004-10-22 Christian Persch <chpe@cvs.gnome.org> * src/ephy-extensions-manager.c: (load_extension), diff --git a/lib/widgets/ephy-node-view.c b/lib/widgets/ephy-node-view.c index acbcf3f27..e71b648b0 100644 --- a/lib/widgets/ephy-node-view.c +++ b/lib/widgets/ephy-node-view.c @@ -400,7 +400,7 @@ drag_data_received_cb (GtkWidget *widget, node = get_node_from_path (view, path); - uris = g_uri_list_extract_uris (selection_data->data); + uris = gtk_selection_data_get_uris (selection_data); if (uris != NULL) { diff --git a/src/ephy-notebook.c b/src/ephy-notebook.c index fef660489..049eda9ab 100644 --- a/src/ephy-notebook.c +++ b/src/ephy-notebook.c @@ -621,7 +621,7 @@ notebook_drag_data_received_cb (GtkWidget* widget, GdkDragContext *context, { char **uris; - uris = g_uri_list_extract_uris (selection_data->data); + uris = gtk_selection_data_get_uris (selection_data); if (uris != NULL) { |