Mercurial > pidgin
changeset 8071:4dede940939c
[gaim-migrate @ 8769]
(22:19:37) deryni: LSchiere2: yay, you have commit access, want to fix gaim_blist_node_set_int? setting->type = GAIM_BLIST_NODE_SETTING_STRING; to setting->type = GAIM_BLIST_NODE_SETTING_INT; unless I'm missing something.
(22:19:56) marv: Sean should be careful, I not really sure, but it sounds like that lucus guy might be decompiling too.
(22:19:58) LSchiere2: deryni: what in the world are you talking about?
(22:20:14) deryni: LSchiere2: sorry, let's try this slower
(22:20:26) deryni: I think gaim_blist_node_set_int in blist.c is broken
(22:21:30) deryni: I think the "setting->type = " is wrong, should be _SETTING_INT not _SETTING_STRING
(22:22:03) LSchiere2: deryni: that's where you loose me. where am i looking?
(22:22:26) deryni: line 2570 here
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Sun, 11 Jan 2004 03:23:55 +0000 |
parents | e9e80fcb155a |
children | ceb88c0a1abb |
files | src/blist.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/blist.c Sat Jan 10 22:37:32 2004 +0000 +++ b/src/blist.c Sun Jan 11 03:23:55 2004 +0000 @@ -2567,7 +2567,7 @@ g_return_if_fail(key != NULL); setting = g_new0(struct gaim_blist_node_setting, 1); - setting->type = GAIM_BLIST_NODE_SETTING_STRING; + setting->type = GAIM_BLIST_NODE_SETTING_INT; setting->value.integer = value; g_hash_table_replace(node->settings, g_strdup(key), setting);