# HG changeset patch # User Richard Laager # Date 1178748276 0 # Node ID 9c4c7f28b005d2db2629dc1e4778c180509b0d86 # Parent 1d7e0acc8a3ef6dafc888f2360af90390678281d# Parent d637851abeb8e32562d0afd079cf87ded5c7d09c merge of '4e4616e3116cf5f5f33872dc1ef102da16c51d53' and '890c0d29c121ab937f241de18d1b2d6cbf8bf022' diff -r 1d7e0acc8a3e -r 9c4c7f28b005 finch/gntconv.c --- a/finch/gntconv.c Wed May 09 21:12:23 2007 +0000 +++ b/finch/gntconv.c Wed May 09 22:04:36 2007 +0000 @@ -303,6 +303,11 @@ get_info_cb(GntMenuItem *item, gpointer ggconv) { FinchConv *ggc = ggconv; + PurpleNotifyUserInfo *info = purple_notify_user_info_new(); + purple_notify_user_info_add_pair(info, _("Information"), _("Retrieving...")); + purple_notify_userinfo(ggc->active_conv->account->gc, purple_conversation_get_name(ggc->active_conv), info, NULL, NULL); + purple_notify_user_info_destroy(info); + serv_get_info(purple_conversation_get_gc(ggc->active_conv), purple_conversation_get_name(ggc->active_conv)); }