]> git.0d.be Git - empathy.git/commitdiff
DnD: add a text/path-list target to contact list windows too
authorOlivier Le Thanh Duong <olivier@lethanh.be>
Mon, 15 Mar 2010 16:47:00 +0000 (17:47 +0100)
committerOlivier Le Thanh Duong <olivier@lethanh.be>
Mon, 15 Mar 2010 16:55:15 +0000 (17:55 +0100)
libempathy-gtk/empathy-contact-list-view.c

index 0ed24bdf8c292535f3cccfa13bec741213971623..e8fddf0ac9dbd48941a3a667c82e445e43c85c82 100644 (file)
@@ -94,6 +94,7 @@ enum DndDragType {
 };
 
 static const GtkTargetEntry drag_types_dest[] = {
+       { "text/path-list",  0, DND_DRAG_TYPE_URI_LIST },
        { "text/uri-list",   0, DND_DRAG_TYPE_URI_LIST },
        { "text/contact-id", 0, DND_DRAG_TYPE_CONTACT_ID },
        { "text/plain",      0, DND_DRAG_TYPE_STRING },
@@ -101,6 +102,7 @@ static const GtkTargetEntry drag_types_dest[] = {
 };
 
 static const GtkTargetEntry drag_types_dest_file[] = {
+       { "text/path-list",  0, DND_DRAG_TYPE_URI_LIST },
        { "text/uri-list",   0, DND_DRAG_TYPE_URI_LIST },
 };