Mercurial > pidgin.yaz
view plugins/mono/loader/status-glue.c @ 12711:145f76e74a9f
[gaim-migrate @ 15055]
Fix SF Bug #1384698 - "Last word in text auto replace not changed"
This uses astro96's idea:
'when the user types something like "Hi how r u" they will see this
(where the "^" is the cursor):
"Hi how are u^"
When they hit enter to send the message, instead of sending
the message, the last word would be replaced:
[Enter]
"Hi how are you^"
and then if they hit enter again it would send the message.'
I code a preference for this, but have #if 0'ed it before committing. I don't think we need a preference to disable this. If it turns out I'm wrong, the code is right there to use.
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Wed, 04 Jan 2006 03:01:32 +0000 |
parents | 8edb08af68c7 |
children |
line wrap: on
line source
#include "status.h" #include "mono-helper.h" #include "mono-glue.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; }