From: <amc...@us...> - 2006-12-13 02:11:16
|
Revision: 17980 http://svn.sourceforge.net/gaim/?rev=17980&view=rev Author: amc_grim Date: 2006-12-12 18:11:14 -0800 (Tue, 12 Dec 2006) Log Message: ----------- make this add a newline for both incomming and outgoing im's. Note that this is only for displayed messages. We do not, repeat, do NOT, send the newline to chats and other users. Modified Paths: -------------- trunk/libgaim/plugins/newline.c Modified: trunk/libgaim/plugins/newline.c =================================================================== --- trunk/libgaim/plugins/newline.c 2006-12-13 01:42:58 UTC (rev 17979) +++ trunk/libgaim/plugins/newline.c 2006-12-13 02:11:14 UTC (rev 17980) @@ -45,14 +45,10 @@ { void *conversation = gaim_conversations_get_handle(); - gaim_signal_connect(conversation, "displaying-im-msg", + gaim_signal_connect(conversation, "writing-im-msg", plugin, GAIM_CALLBACK(addnewline_msg_cb), NULL); - gaim_signal_connect(conversation, "displaying-chat-msg", + gaim_signal_connect(conversation, "writing-chat-msg", plugin, GAIM_CALLBACK(addnewline_msg_cb), NULL); - gaim_signal_connect(conversation, "receiving-im-msg", - plugin, GAIM_CALLBACK(addnewline_msg_cb), NULL); - gaim_signal_connect(conversation, "receiving-chat-msg", - plugin, GAIM_CALLBACK(addnewline_msg_cb), NULL); return TRUE; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |