Mercurial > pidgin
view libgaim/plugins/mono/loader/debug-glue.c @ 14712:b15c2eaeb67f
[gaim-migrate @ 17466]
Patch #1573404 from Richard Nelson (wabz):
"This patch keeps the blist sorted (sorts rows at the
current depth when the text for a given row changes).
Adds a menu "Options" to the blist and adds the options
to sort by status, alphabetically and toggle offline
buddies."
I changed some of the stuff from the patch. Hopefully I didn't break anything.
I also added a "Sort by log size" option.
committer: Tailor Script <tailor@pidgin.im>
| author | Sadrul Habib Chowdhury <imadil@gmail.com> |
|---|---|
| date | Thu, 12 Oct 2006 03:26:33 +0000 |
| parents | 60b1bc8dbf37 |
| 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); }
