mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 19:00:08 +00:00
gtk/gtkfilechooserdefault.c: Use accessor functions to access GtkSelectionData
This commit is contained in:
parent
fbbe9f5191
commit
c806c0821a
@ -3224,6 +3224,7 @@ shortcuts_drag_data_received_cb (GtkWidget *widget,
|
||||
GtkFileChooserDefault *impl;
|
||||
GtkTreePath *tree_path;
|
||||
GtkTreeViewDropPosition tree_pos;
|
||||
GdkAtom target;
|
||||
int position;
|
||||
int bookmarks_index;
|
||||
|
||||
@ -3243,9 +3244,11 @@ shortcuts_drag_data_received_cb (GtkWidget *widget,
|
||||
g_assert (position >= bookmarks_index);
|
||||
position -= bookmarks_index;
|
||||
|
||||
if (gtk_targets_include_uri (&selection_data->target, 1))
|
||||
target = gtk_selection_data_get_target (selection_data);
|
||||
|
||||
if (gtk_targets_include_uri (&target, 1))
|
||||
shortcuts_drop_uris (impl, selection_data, position);
|
||||
else if (selection_data->target == gdk_atom_intern_static_string ("GTK_TREE_MODEL_ROW"))
|
||||
else if (target == gdk_atom_intern_static_string ("GTK_TREE_MODEL_ROW"))
|
||||
shortcuts_reorder (impl, position);
|
||||
|
||||
g_signal_stop_emission_by_name (widget, "drag-data-received");
|
||||
|
Loading…
Reference in New Issue
Block a user