Mercurial > pidgin.yaz
view plugins/mono/loader/status-glue.c @ 12064:658623020748
[gaim-migrate @ 14359]
SF Patch #1355592 from Sadrul
'If I uncheck the "Show formatting on incoming
messages", then it also starts ignoring the format of
the outgoing messages -- which I don't believe is the
intended behaviour. This patch fixes that.'
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Sun, 13 Nov 2005 01:03:43 +0000 |
parents | ecd33ffb0b0a |
children | 8edb08af68c7 |
line wrap: on
line source
#include "status.h" #include "mono-helper.h" MonoObject* gaim_status_build_status_object(void* data) { MonoObject *obj = NULL; GaimStatus *status = (GaimStatus*)data; obj = ml_create_api_object("Status"); g_return_val_if_fail(obj != NULL, NULL); ml_set_prop_string(obj, "Id", (char*)gaim_status_get_id(status)); return obj; }