]> git.0d.be Git - empathy.git/commitdiff
Use text/individual-id instead of text/contact-id for dragging Individuals
authorPhilip Withnall <philip.withnall@collabora.co.uk>
Tue, 24 Aug 2010 13:03:25 +0000 (14:03 +0100)
committerPhilip Withnall <philip.withnall@collabora.co.uk>
Fri, 27 Aug 2010 09:23:48 +0000 (10:23 +0100)
libempathy-gtk/empathy-individual-view.c

index 56ee47ec3480ee39d46f4e03dc08a680aa320555..149edd7d8d1019be74bda5a4e638780e40b940be 100644 (file)
@@ -120,7 +120,7 @@ enum DndDragType
 static const GtkTargetEntry drag_types_dest[] = {
   DRAG_TYPE ("text/path-list", DND_DRAG_TYPE_URI_LIST),
   DRAG_TYPE ("text/uri-list", DND_DRAG_TYPE_URI_LIST),
-  DRAG_TYPE ("text/contact-id", DND_DRAG_TYPE_INDIVIDUAL_ID),
+  DRAG_TYPE ("text/individual-id", DND_DRAG_TYPE_INDIVIDUAL_ID),
   DRAG_TYPE ("text/plain", DND_DRAG_TYPE_STRING),
   DRAG_TYPE ("STRING", DND_DRAG_TYPE_STRING),
 };
@@ -131,7 +131,7 @@ static const GtkTargetEntry drag_types_dest_file[] = {
 };
 
 static const GtkTargetEntry drag_types_source[] = {
-  DRAG_TYPE ("text/contact-id", DND_DRAG_TYPE_INDIVIDUAL_ID),
+  DRAG_TYPE ("text/individual-id", DND_DRAG_TYPE_INDIVIDUAL_ID),
 };
 
 #undef DRAG_TYPE