Mercurial > pidgin
view plugins/perl/common/SSLConn.xs @ 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 | b284c703d398 |
children | 96f9b4798012 |
line wrap: on
line source
#include "module.h" /* TODO Gaim::Ssl::Connection gaim_ssl_connect(account, host, port, func, error_func, data) Gaim::Account account const char *host int port GaimSslInputFunction func GaimSslErrorFunction error_func void gaim_ssl_input_add(gsc, func, data) Gaim::Ssl::Connection gsc Gaim::SslInputFunction func Gaim::Ssl::Connection gaim_ssl_connect_fd(account, fd, func, error_func, data) Gaim::Account account int fd GaimSslInputFunction func GaimSslErrorFunction error_func */ MODULE = Gaim::SSL PACKAGE = Gaim::SSL PREFIX = gaim_ssl_ PROTOTYPES: ENABLE void gaim_ssl_close(gsc) Gaim::Ssl::Connection gsc Gaim::Ssl::Ops gaim_ssl_get_ops() void gaim_ssl_init() gboolean gaim_ssl_is_supported() size_t gaim_ssl_read(gsc, buffer, len) Gaim::Ssl::Connection gsc void * buffer size_t len void gaim_ssl_set_ops(ops) Gaim::Ssl::Ops ops void gaim_ssl_uninit() size_t gaim_ssl_write(gsc, buffer, len) Gaim::Ssl::Connection gsc void * buffer size_t len