diff src/protocols/jabber/chat.c @ 7400:08cef5988410

[gaim-migrate @ 7996] there isn't really whispering in jabber chats committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Fri, 31 Oct 2003 06:53:11 +0000
parents d60e1629ffde
children 0555e59dfba9
line wrap: on
line diff
--- a/src/protocols/jabber/chat.c	Fri Oct 31 06:14:58 2003 +0000
+++ b/src/protocols/jabber/chat.c	Fri Oct 31 06:53:11 2003 +0000
@@ -138,22 +138,6 @@
 	g_free(room_jid);
 }
 
-void jabber_chat_whisper(GaimConnection *gc, int id, const char *who,
-		const char *message)
-{
-	JabberStream *js = gc->proto_data;
-	JabberChat *chat;
-	char *full_jid;
-
-	chat = jabber_chat_find_by_id(js, id);
-
-	full_jid = g_strdup_printf("%s@%s/%s", chat->room, chat->server, who);
-
-	jabber_message_send_im(gc, full_jid, message, 0);
-
-	g_free(full_jid);
-}
-
 void jabber_chat_join(GaimConnection *gc, GHashTable *data)
 {
 	JabberChat *chat;