comparison src/gtkutils.c @ 8458:9773e3f3ec7a

[gaim-migrate @ 9188] who in their right mind would use strike through as a default font option? and it didn't work right anyway. committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Tue, 16 Mar 2004 20:24:37 +0000
parents 95afeb9a0c96
children b994b0223335
comparison
equal deleted inserted replaced
8457:daeeb96cdf8f 8458:9773e3f3ec7a
1016 if (gaim_prefs_get_bool("/gaim/gtk/conversations/send_underline")) { 1016 if (gaim_prefs_get_bool("/gaim/gtk/conversations/send_underline")) {
1017 g_snprintf(tmp, length, "<U>%s</U>", buf); 1017 g_snprintf(tmp, length, "<U>%s</U>", buf);
1018 strcpy(buf, tmp); 1018 strcpy(buf, tmp);
1019 } 1019 }
1020 1020
1021 if (gaim_prefs_get_bool("/gaim/gtk/conversations/send_strikethrough")) {
1022 g_snprintf(tmp, length, "<S>%s</S>", buf);
1023 strcpy(buf, tmp);
1024 }
1025
1026 if (gaim_prefs_get_bool("/gaim/gtk/conversations/use_custom_font")) { 1021 if (gaim_prefs_get_bool("/gaim/gtk/conversations/use_custom_font")) {
1027 const char *fontface; 1022 const char *fontface;
1028 1023
1029 fontface = gaim_prefs_get_string("/gaim/gtk/conversations/font_face"); 1024 fontface = gaim_prefs_get_string("/gaim/gtk/conversations/font_face");
1030 1025