Mercurial > pidgin
view plugins/mono/loader/debug-glue.c @ 12131:cb7ccb5048cf
[gaim-migrate @ 14431]
SF Patch #1357001 from Sadrul
"If you have a conversation-tab open, and you get
disconnected (or reconnected), the tab does not update
until you change focus to/from the tab. This patch
fixes that."
committer: Tailor Script <tailor@pidgin.im>
| author | Richard Laager <rlaager@wiktel.com> |
|---|---|
| date | Fri, 18 Nov 2005 12:52:29 +0000 |
| parents | a3302d271199 |
| children |
line wrap: on
line source
#include "mono-glue.h" #include "debug.h" void gaim_debug_glue(int type, MonoString *cat, MonoString *str) { char *ccat; char *cstr; ccat = mono_string_to_utf8(cat); cstr = mono_string_to_utf8(str); gaim_debug(type, ccat, cstr); g_free(ccat); g_free(cstr); }
