comparison src/gtkimhtml.c @ 4288:a723d060620a

[gaim-migrate @ 4541] Here. Now you can like have lots of themes and like make your own and like switch them and stuff. It's kidna neat, I suppose. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Sat, 11 Jan 2003 04:48:10 +0000
parents f1876640e568
children cddb50734169
comparison
equal deleted inserted replaced
4287:f98e27e2cb10 4288:a723d060620a
1013 } 1013 }
1014 1014
1015 void gtk_imhtml_set_img_handler (GtkIMHtml *imhtml, 1015 void gtk_imhtml_set_img_handler (GtkIMHtml *imhtml,
1016 GtkIMHtmlImage handler){} 1016 GtkIMHtmlImage handler){}
1017 1017
1018 void gtk_imhtml_remove_smileys (GtkIMHtml *imhtml){} 1018 void gtk_imhtml_remove_smileys(GtkIMHtml *imhtml)
1019 {
1020 g_hash_table_destroy(imhtml->smiley_data);
1021 gtk_smiley_tree_destroy(imhtml->default_smilies);
1022 imhtml->smiley_data = g_hash_table_new (g_str_hash, g_str_equal);
1023 imhtml->default_smilies = gtk_smiley_tree_new();
1024 }
1019 void gtk_imhtml_show_smileys (GtkIMHtml *imhtml, 1025 void gtk_imhtml_show_smileys (GtkIMHtml *imhtml,
1020 gboolean show) 1026 gboolean show)
1021 { 1027 {
1022 imhtml->show_smileys = show; 1028 imhtml->show_smileys = show;
1023 } 1029 }