~ubuntu-branches/ubuntu/lucid/epiphany-browser/lucid

« back to all changes in this revision

Viewing changes to lib/ephy-dnd.c

  • Committer: Bazaar Package Importer
  • Author(s): Josselin Mouette, Gustavo Noronha Silva, Josselin Mouette
  • Date: 2009-11-13 19:28:48 UTC
  • mfrom: (1.3.10 sid)
  • Revision ID: james.westby@ubuntu.com-20091113192848-l1ktaulwcdb1cd2i
Tags: 2.29.1-2
[ Gustavo Noronha Silva ]
* debian/patches/04_set_prgname.patch:
- New patch, to make sure GNOME Shell is able to match the application
  windows to the .desktop file, and app well favourite.

[ Josselin Mouette ]
* Add a conflict with swfdec-mozilla, the plugin makes the browser 
  completely unusable on any website with Flash content.

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
        GString *result = NULL;
82
82
        GdkAtom target;
83
83
 
84
 
        target = selection_data->target;
 
84
        target = gtk_selection_data_get_target (selection_data);
85
85
 
86
86
        if (target == gdk_atom_intern (EPHY_DND_URI_LIST_TYPE, FALSE) ||
87
87
            target == gdk_atom_intern (EPHY_DND_TEXT_TYPE, FALSE))
106
106
        }
107
107
 
108
108
        gtk_selection_data_set (selection_data,
109
 
                                selection_data->target,
 
109
                                target,
110
110
                                8, (const guchar *) result->str, result->len);
111
111
 
112
112
        g_string_free (result, TRUE);