Initial commit for utf8 everywhere.

This commit is contained in:
Arnavion
2012-11-03 10:24:25 -07:00
parent e0b1724158
commit 5d9264aff6
21 changed files with 374 additions and 723 deletions

View File

@@ -286,8 +286,8 @@ menu_quick_item (char *cmd, char *label, GtkWidget * menu, int flags,
img = gtk_image_new_from_file (icon);
else
{
/* try relative to ~/.xchat2 */
path = g_strdup_printf ("%s/%s", get_xdir_fs (), icon);
/* try relative to <xdir> */
path = g_strdup_printf ("%s" G_DIR_SEPARATOR_S "%s", get_xdir (), icon);
if (access (path, R_OK) == 0)
img = gtk_image_new_from_file (path);
else