aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk
diff options
context:
space:
mode:
authorPhilip Withnall <philip.withnall@collabora.co.uk>2010-08-24 21:03:25 +0800
committerPhilip Withnall <philip.withnall@collabora.co.uk>2010-08-27 17:23:48 +0800
commit751691d4e019a00b7ee52de97b259fee3d9c8af3 (patch)
tree751bdf9df378e20700b5cc3c5537fa9d2a2e14d2 /libempathy-gtk
parent7c2d23958c938a73eefbd35c2ecfb74fc57c1421 (diff)
downloadgsoc2013-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
Diffstat (limited to 'libempathy-gtk')
-rw-r--r--libempathy-gtk/empathy-individual-view.c4
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