diff options
author | John Sullivan <sullivan@src.gnome.org> | 2000-04-26 23:40:08 +0000 |
---|---|---|
committer | John Sullivan <sullivan@src.gnome.org> | 2000-04-26 23:40:08 +0000 |
commit | 27acf68ff3b24882c59ce04e298f88fa72abdc6e (patch) | |
tree | 3b1c4536c52373f112a04a6e335b99ac179243b7 /libnautilus-private | |
parent | 701d5507ed7b1ef1ae63b8ee5bb35b8908623c1a (diff) | |
download | nautilus-27acf68ff3b24882c59ce04e298f88fa72abdc6e.tar.gz |
More FIXME-to-bug work.
* check-FIXME.pl: Added the three desktop-drawing files
that aren't included in the build to the list of files
in which to ignore FIXMEs.
* nautilus-widgets/nautilus-caption-table.c,
* nautilus-widgets/nautilus-preferences-group.c,
* nautilus-widgets/nautilus-preferences.c,
* src/file-manager/dfos-xfer-progress-dialog.c,
* src/file-manager/dfos-xfer.c:
Wrote bug reports for all FIXMEs in these files. Down to
54 in Nautilus with no bug report.
Diffstat (limited to 'libnautilus-private')
-rw-r--r-- | libnautilus-private/nautilus-caption-table.c | 4 | ||||
-rw-r--r-- | libnautilus-private/nautilus-file-operations-progress.c | 2 | ||||
-rw-r--r-- | libnautilus-private/nautilus-file-operations.c | 8 | ||||
-rw-r--r-- | libnautilus-private/nautilus-preferences-group.c | 1 | ||||
-rw-r--r-- | libnautilus-private/nautilus-preferences.c | 2 |
5 files changed, 8 insertions, 9 deletions
diff --git a/libnautilus-private/nautilus-caption-table.c b/libnautilus-private/nautilus-caption-table.c index a2f84b9e9..a30d30c2d 100644 --- a/libnautilus-private/nautilus-caption-table.c +++ b/libnautilus-private/nautilus-caption-table.c @@ -134,7 +134,7 @@ caption_table_destroy (GtkObject *object) (*GTK_OBJECT_CLASS (parent_class)->destroy) (object); } -/* FIXME: This should be public for the widget to be useful */ +/* FIXME bugzilla.eazel.com 679: This should be public for the widget to be useful */ static void caption_table_resize (NautilusCaptionTable *caption_table, guint num_rows) @@ -162,7 +162,7 @@ caption_table_resize (NautilusCaptionTable *caption_table, guint new_size = caption_table->detail->num_rows; guint realloc_size = sizeof(GtkWidget *) * new_size; - /* FIXME: Use a GList for this */ + /* FIXME bugzilla.eazel.com 680: Use a GList for this */ caption_table->detail->labels = (GtkWidget**) g_realloc (caption_table->detail->labels, realloc_size); diff --git a/libnautilus-private/nautilus-file-operations-progress.c b/libnautilus-private/nautilus-file-operations-progress.c index fe2b9c804..ee1778b29 100644 --- a/libnautilus-private/nautilus-file-operations-progress.c +++ b/libnautilus-private/nautilus-file-operations-progress.c @@ -27,7 +27,7 @@ #include <gnome.h> -#define DIALOG_WIDTH 350 /* FIXME? */ +#define DIALOG_WIDTH 350 /* FIXME bugzilla.eazel.com 675: ? */ static GnomeDialogClass *parent_class; diff --git a/libnautilus-private/nautilus-file-operations.c b/libnautilus-private/nautilus-file-operations.c index a375685ce..88a7edd31 100644 --- a/libnautilus-private/nautilus-file-operations.c +++ b/libnautilus-private/nautilus-file-operations.c @@ -154,7 +154,7 @@ handle_xfer_ok (const GnomeVFSXferProgressInfo *progress_info, return TRUE; case GNOME_VFS_XFER_PHASE_FILECOMPLETED: - /* FIXME? */ + /* FIXME bugzilla.eazel.com 676: ? */ return TRUE; case GNOME_VFS_XFER_PHASE_COMPLETED: @@ -369,7 +369,7 @@ dfos_xfer (DFOS *dfos, gnome_vfs_result_to_string (result)); - /* FIXME: signals and all that. */ + /* FIXME bugzilla.eazel.com 677: signals and all that. */ dialog = gnome_error_dialog (message); gtk_widget_show (dialog); @@ -526,7 +526,7 @@ fs_move_to_trash (const GList *item_uris, GtkWidget *parent_view) source_dir_uri = NULL; trash_dir_uri = NULL; - /* FIXME: + /* FIXME bugzilla.eazel.com 678: * Separate items that can be moved to trash and ones that can't. * For the ones that cannot, ask the user if they want to delete the files * on the spot. @@ -575,7 +575,7 @@ fs_empty_trash (GtkWidget *parent_view) GnomeVFSResult result; XferInfo *xfer_info; - /* FIXME: + /* FIXME bugzilla.eazel.com 638: * add the different trash directories from the different volumes */ diff --git a/libnautilus-private/nautilus-preferences-group.c b/libnautilus-private/nautilus-preferences-group.c index cee9f0ff7..bb8a99ddf 100644 --- a/libnautilus-private/nautilus-preferences-group.c +++ b/libnautilus-private/nautilus-preferences-group.c @@ -209,7 +209,6 @@ nautilus_preferences_group_add_item (NautilusPreferencesGroup *group, g_return_val_if_fail (preference_name != NULL, NULL); - /* FIXME: The following cast needs to be fixed */ preference = nautilus_preferences_get_preference (preference_name); g_assert (preference != NULL); diff --git a/libnautilus-private/nautilus-preferences.c b/libnautilus-private/nautilus-preferences.c index 02540e43c..339d8f6ee 100644 --- a/libnautilus-private/nautilus-preferences.c +++ b/libnautilus-private/nautilus-preferences.c @@ -818,7 +818,7 @@ nautilus_preferences_initialize (int argc, char **argv) { g_assert (error != NULL); - /* FIXME: Need better error reporting here */ + /* FIXME bugzilla.eazel.com 672: Need better error reporting here */ g_warning ("GConf init failed:\n %s", error->str); gconf_error_destroy (error); |