Mercurial > pidgin
changeset 8457:daeeb96cdf8f
[gaim-migrate @ 9187]
" the g_signal_new was using a marshal with arguments,
but the signal cb wasn't handling them.. I'm assuming
this is what was wanted because now on send it says:
Emiting signal
yo!
anyways.. here's the patch for the one line fix..." --Gary Kramlich
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Tue, 16 Mar 2004 19:43:58 +0000 |
parents | 5f8d4ab6d375 |
children | 9773e3f3ec7a |
files | src/gtkimhtml.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/gtkimhtml.c Tue Mar 16 19:35:17 2004 +0000 +++ b/src/gtkimhtml.c Tue Mar 16 19:43:58 2004 +0000 @@ -645,7 +645,7 @@ G_STRUCT_OFFSET(GtkIMHtmlClass, clear_format), NULL, 0, - g_cclosure_marshal_VOID__POINTER, + g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); gobject_class->finalize = gtk_imhtml_finalize; }