changeset 16992:9c4c7f28b005

merge of '4e4616e3116cf5f5f33872dc1ef102da16c51d53' and '890c0d29c121ab937f241de18d1b2d6cbf8bf022'
author Richard Laager <rlaager@wiktel.com>
date Wed, 09 May 2007 22:04:36 +0000
parents 1d7e0acc8a3e (current diff) d637851abeb8 (diff)
children 87e6707b512f
files
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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));
 }