diff options
author | Philip Withnall <philip.withnall@collabora.co.uk> | 2010-08-24 21:03:25 +0800 |
---|---|---|
committer | Philip Withnall <philip.withnall@collabora.co.uk> | 2010-08-27 17:23:48 +0800 |
commit | 751691d4e019a00b7ee52de97b259fee3d9c8af3 (patch) | |
tree | 751bdf9df378e20700b5cc3c5537fa9d2a2e14d2 | |
parent | 7c2d23958c938a73eefbd35c2ecfb74fc57c1421 (diff) | |
download | gsoc2013-empathy-751691d4e019a00b7ee52de97b259fee3d9c8af3.tar gsoc2013-empathy-751691d4e019a00b7ee52de97b259fee3d9c8af3.tar.gz gsoc2013-empathy-751691d4e019a00b7ee52de97b259fee3d9c8af3.tar.bz2 gsoc2013-empathy-751691d4e019a00b7ee52de97b259fee3d9c8af3.tar.lz gsoc2013-empathy-751691d4e019a00b7ee52de97b259fee3d9c8af3.tar.xz gsoc2013-empathy-751691d4e019a00b7ee52de97b259fee3d9c8af3.tar.zst gsoc2013-empathy-751691d4e019a00b7ee52de97b259fee3d9c8af3.zip |
Use text/individual-id instead of text/contact-id for dragging Individuals
-rw-r--r-- | libempathy-gtk/empathy-individual-view.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-individual-view.c b/libempathy-gtk/empathy-individual-view.c index 56ee47ec3..149edd7d8 100644 --- a/libempathy-gtk/empathy-individual-view.c +++ b/libempathy-gtk/empathy-individual-view.c @@ -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 |