mirror of
https://github.com/irssi/irssi.git
synced 2026-08-09 11:50:10 +02:00
Code Cleanup:
Use g_string_append_printf() instead of g_string_sprintfa() (which is considered deprecated.) git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5003 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
32e01a5a06
commit
c561ba35e6
30 changed files with 86 additions and 86 deletions
|
|
@ -372,11 +372,11 @@ static void set_color(GString *str, int cmd)
|
|||
|
||||
if ((cmd & LINE_COLOR_BG) == 0) {
|
||||
/* change foreground color */
|
||||
g_string_sprintfa(str, "\004%c%c",
|
||||
g_string_append_printf(str, "\004%c%c",
|
||||
color, FORMAT_COLOR_NOCHANGE);
|
||||
} else {
|
||||
/* change background color */
|
||||
g_string_sprintfa(str, "\004%c%c",
|
||||
g_string_append_printf(str, "\004%c%c",
|
||||
FORMAT_COLOR_NOCHANGE, color);
|
||||
}
|
||||
}
|
||||
|
|
@ -429,19 +429,19 @@ void textbuffer_line2text(LINE_REC *line, int coloring, GString *str)
|
|||
g_string_append_c(str, 22);
|
||||
break;
|
||||
case LINE_CMD_BLINK:
|
||||
g_string_sprintfa(str, "\004%c",
|
||||
g_string_append_printf(str, "\004%c",
|
||||
FORMAT_STYLE_BLINK);
|
||||
break;
|
||||
case LINE_CMD_BOLD:
|
||||
g_string_sprintfa(str, "\004%c",
|
||||
g_string_append_printf(str, "\004%c",
|
||||
FORMAT_STYLE_BOLD);
|
||||
break;
|
||||
case LINE_CMD_COLOR0:
|
||||
g_string_sprintfa(str, "\004%c%c",
|
||||
g_string_append_printf(str, "\004%c%c",
|
||||
'0', FORMAT_COLOR_NOCHANGE);
|
||||
break;
|
||||
case LINE_CMD_INDENT:
|
||||
g_string_sprintfa(str, "\004%c",
|
||||
g_string_append_printf(str, "\004%c",
|
||||
FORMAT_STYLE_INDENT);
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue