Mercurial > pidgin
changeset 7891:62f885e37afd
[gaim-migrate @ 8551]
Warning fixes. Thanks, xgrimx.
committer: Tailor Script <tailor@pidgin.im>
author | Ethan Blanton <elb@pidgin.im> |
---|---|
date | Thu, 18 Dec 2003 00:58:39 +0000 |
parents | 438b4667db0d |
children | 0d7b5d7cb5c7 |
files | src/gtkblist.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/gtkblist.c Thu Dec 18 00:31:26 2003 +0000 +++ b/src/gtkblist.c Thu Dec 18 00:58:39 2003 +0000 @@ -3465,7 +3465,7 @@ data->entries = g_list_append(data->entries, spin); gtk_widget_set_size_request(spin, 50, -1); gtk_box_pack_end(GTK_BOX(rowbox), spin, FALSE, FALSE, 0); - gtk_label_set_mnemonic_widget(label, spin); + gtk_label_set_mnemonic_widget(GTK_LABEL(label), spin); } else { @@ -3490,7 +3490,7 @@ g_signal_connect(G_OBJECT(entry), "activate", G_CALLBACK(add_chat_cb), data); - gtk_label_set_mnemonic_widget(label, entry); + gtk_label_set_mnemonic_widget(GTK_LABEL(label), entry); } g_free(pce);