From 4449e688f0d30124627a96f5e7a07a12aee4c589 Mon Sep 17 00:00:00 2001 From: Pavel Cisler Date: Tue, 6 Jun 2000 00:29:38 +0000 Subject: [PATCH] Added more bug numbers to FIXMEs. Fixed one misspelled FIXME that made it 2000-06-05 Pavel Cisler * libgnomevfs-corba/gnome-vfs-slave.c: (serve_channel_read), (serve_channel_write): * libgnomevfs-pthread/gnome-vfs-job-slave.c: * mime-type-capplet/edit-window.c: (populate_application_menu): * mime-type-capplet/mime-data.c: (add_to_key): * modules/extfs-method.c: (do_open), (read_directory_list), (do_open_directory), (match): * modules/extfs/cpio.in: * modules/extfs/lha.in: * modules/file-method.c: (read_directory): * modules/gconf-method.c: (directory_handle_destroy): Added more bug numbers to FIXMEs. Fixed one misspelled FIXME that made it show up in the check-FIXME.pl tool. --- capplets/file-types/edit-window.c | 4 +++- capplets/file-types/mime-data.c | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) 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 {