| 408 static void |
408 static void |
| 409 pounce_dnd_recv(GtkWidget *widget, GdkDragContext *dc, gint x, gint y, |
409 pounce_dnd_recv(GtkWidget *widget, GdkDragContext *dc, gint x, gint y, |
| 410 GtkSelectionData *sd, guint info, guint t, gpointer data) |
410 GtkSelectionData *sd, guint info, guint t, gpointer data) |
| 411 { |
411 { |
| 412 PidginPounceDialog *dialog; |
412 PidginPounceDialog *dialog; |
| 413 GdkAtom target = gtk_selection_data_get_target(sd); |
413 GdkAtom target = gtk_selection_data_get_target(sd); |
| 414 const guchar *sd_data = gtk_selection_data_get_data(sd); |
414 const guchar *sd_data = gtk_selection_data_get_data(sd); |
| 415 |
415 |
| 416 if (target == gdk_atom_intern("PURPLE_BLIST_NODE", FALSE)) |
416 if (target == gdk_atom_intern("PURPLE_BLIST_NODE", FALSE)) |
| 417 { |
417 { |
| 418 PurpleBlistNode *node = NULL; |
418 PurpleBlistNode *node = NULL; |
| 419 PurpleBuddy *buddy; |
419 PurpleBuddy *buddy; |
| 420 |
420 |