comparison src/gtkconv.c @ 6622:a4622f1fb5a1

[gaim-migrate @ 7146] (10:10:23) Robot101: kills off OPT_CONN_* in favour of an enum, and deprecates all the IM_FLAGS_* except IM_FLAG_AWAY which is made into GAIM_IM_AUTO_RESP in a GaimImFlags enum. committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Mon, 25 Aug 2003 14:12:28 +0000
parents 42fdf16f1dad
children bdc448cf4cb6
comparison
equal deleted inserted replaced
6621:42fdf16f1dad 6622:a4622f1fb5a1
379 return; 379 return;
380 } 380 }
381 381
382 buf2 = g_malloc(limit); 382 buf2 = g_malloc(limit);
383 383
384 if (gc && gc->flags & OPT_CONN_HTML) { 384 if (gc && gc->flags & GAIM_CONNECTION_HTML) {
385 if (gaim_prefs_get_bool("/gaim/gtk/conversations/send_bold")) { 385 if (gaim_prefs_get_bool("/gaim/gtk/conversations/send_bold")) {
386 g_snprintf(buf2, limit, "<B>%s</B>", buf); 386 g_snprintf(buf2, limit, "<B>%s</B>", buf);
387 strcpy(buf, buf2); 387 strcpy(buf, buf2);
388 } 388 }
389 389