Index: exo/exo-icon-chooser-model.c =================================================================== --- exo/exo-icon-chooser-model.c (révision 27985) +++ exo/exo-icon-chooser-model.c (copie de travail) @@ -484,7 +484,7 @@ { /* determine the icons for the context */ icons = gtk_icon_theme_list_icons (icon_theme, CONTEXT_NAMES[context]); - icons = g_list_sort (icons, (GCompareFunc) g_strcasecmp); + icons = g_list_sort (icons, (GCompareFunc) g_ascii_strcasecmp); /* update the contexts for the items */ for (icp = icons, itp = items; icp != NULL && itp != NULL; itp = itp->next) Index: exo-desktop-item-edit/main.c =================================================================== --- exo-desktop-item-edit/main.c (révision 27985) +++ exo-desktop-item-edit/main.c (copie de travail) @@ -177,7 +177,6 @@ { /* generic stuff */ g_key_file_set_value (key_file, "Desktop Entry", "Version", "1.0"); - g_key_file_set_value (key_file, "Desktop Entry", "Encoding", "UTF-8"); g_key_file_set_value (key_file, "Desktop Entry", "Type", opt_type); g_key_file_set_value (key_file, "Desktop Entry", "Name", opt_name); g_key_file_set_value (key_file, "Desktop Entry", "Comment", opt_comment); @@ -190,7 +189,6 @@ } else { - g_key_file_set_value (key_file, "Desktop Entry", "Categories", "Application;"); g_key_file_set_value (key_file, "Desktop Entry", "Exec", opt_command); g_key_file_set_value (key_file, "Desktop Entry", "Icon", opt_icon); }