diff --git a/capplets/file-types/edit-window.c b/capplets/file-types/edit-window.c index 5ff3a9e93..76f38cc2a 100644 --- a/capplets/file-types/edit-window.c +++ b/capplets/file-types/edit-window.c @@ -517,7 +517,9 @@ populate_application_menu (GtkWidget *application_menu, const char *mime_type) /* Have menu appear with default application selected */ gtk_menu_set_active (GTK_MENU (new_menu), index); } else { - /* FIXME: What should we do in this case? */ + /* FIXME bugzilla.eazel.com 1221: + * What should we do in this case? + * */ } } } diff --git a/capplets/file-types/mime-data.c b/capplets/file-types/mime-data.c index e1a1a93d1..bca6efd4d 100644 --- a/capplets/file-types/mime-data.c +++ b/capplets/file-types/mime-data.c @@ -131,7 +131,9 @@ add_to_key (char *mime_type, char *def, GHashTable *table, gboolean init_user) used = 0; while ((ext = strtok_r (s, " \t\n\r,", &tokp)) != NULL){ - /* FIXME: We really need to check for duplicates before entering this. */ + /* FIXME bugzilla.eazel.com 1222: + * We really need to check for duplicates before entering this. + */ if (!init_user) { info->ext[priority] = g_list_prepend (info->ext[priority], ext); } else {