Typo bug fix

2002-01-27  Bradford Hovinen  <hovinen@ximian.com>

	* mime-type-info.c (get_gconf_base_name): Typo bug fix
This commit is contained in:
Bradford Hovinen 2002-01-27 20:00:34 +00:00 committed by Bradford Hovinen (Gdict maintainer)
parent 9b549da9bf
commit f815a95d18

View file

@ -336,7 +336,7 @@ get_gconf_base_name (MimeCategoryInfo *category)
tmp1 = mime_category_info_get_full_name (category);
for (tmp = tmp1; *tmp != '\0'; tmp++)
if (isspace (tmp)) *tmp = '-';
if (isspace (*tmp)) *tmp = '-';
tmp = g_strconcat ("/desktop/gnome/file-types-categories/",
tmp1, "/default-action-id", NULL);