diff options
author | John Sullivan <sullivan@src.gnome.org> | 2000-08-28 23:36:35 +0000 |
---|---|---|
committer | John Sullivan <sullivan@src.gnome.org> | 2000-08-28 23:36:35 +0000 |
commit | 8bc0bad71c017393f1a68d5313b8829bb067b1c3 (patch) | |
tree | 6245c9ad6e893420d6e8e9bb6919766476f8a951 /libnautilus-extensions/nautilus-icon-dnd.c | |
parent | c2d0d23c0cf47331694fc637f93439bfbf9c4cf9 (diff) | |
download | nautilus-8bc0bad71c017393f1a68d5313b8829bb067b1c3.tar.gz |
Added more bug numbers to FIXMEs. 94 to go.
* libnautilus-extensions/nautilus-icon-canvas-item.c: (map_pixbuf),
(draw_label_text_aa), (nautilus_icon_canvas_item_event):
* libnautilus-extensions/nautilus-icon-container.c: (icon_free),
(get_all_icon_bounds), (lay_down_icons_tblr), (lay_down_icons),
(nautilus_icon_container_move_icon), (stop_rubberbanding),
(destroy), (hide_rename_widget):
* libnautilus-extensions/nautilus-icon-dnd.c:
(nautilus_icon_container_dropped_icon_feedback),
(receive_dropped_keyword), (auto_scroll_timeout_callback),
(nautilus_icon_container_find_drop_target),
(nautilus_icon_dnd_update_drop_target), (nautilus_icon_dnd_fini):
* libnautilus-extensions/nautilus-link-set.c: (link_set_path_name),
(expand_uri):
* libnautilus-extensions/nautilus-link.c:
(nautilus_link_get_root_property),
(nautilus_link_get_additional_text), (make_local_path),
(nautilus_link_get_image_uri), (nautilus_link_get_link_uri),
(nautilus_link_get_link_type):
* src/nautilus-sidebar-title.c:
(nautilus_sidebar_title_select_text_color), (update_font),
(update_title), (update_more_info), (update_emblems),
(update_notes):
Diffstat (limited to 'libnautilus-extensions/nautilus-icon-dnd.c')
-rw-r--r-- | libnautilus-extensions/nautilus-icon-dnd.c | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/libnautilus-extensions/nautilus-icon-dnd.c b/libnautilus-extensions/nautilus-icon-dnd.c index 0f17c6ac9..3441fb763 100644 --- a/libnautilus-extensions/nautilus-icon-dnd.c +++ b/libnautilus-extensions/nautilus-icon-dnd.c @@ -353,7 +353,8 @@ nautilus_icon_container_dropped_icon_feedback (GtkWidget *widget, /* Delete old shadow if any. */ if (dnd_info->shadow != NULL) { - /* FIXME: Is a destroy really sufficient here? Who does the unref? */ + /* FIXME bugzilla.eazel.com 2484: + * Is a destroy really sufficient here? Who does the unref? */ gtk_object_destroy (GTK_OBJECT (dnd_info->shadow)); } @@ -514,7 +515,8 @@ receive_dropped_keyword (NautilusIconContainer *container, char* keyword, int x, return; } - /* FIXME: This does not belong in the icon code. + /* FIXME bugzilla.eazel.com 2485: + * This does not belong in the icon code. * It has to be in the file manager. * The icon code has no right to deal with the file directly. * But luckily there's no issue of not getting a file object, @@ -610,7 +612,7 @@ auto_scroll_timeout_callback (gpointer data) /* Adjust the scroll delta to the proper acceleration values depending on how far * into the sroll margins we are. - * FIXME: + * FIXME bugzilla.eazel.com 2486: * we could use an exponential acceleration factor here for better feel */ if (x_scroll_delta != 0) { @@ -825,7 +827,8 @@ nautilus_icon_container_find_drop_target (NautilusIconContainer *container, gnome_canvas_window_to_world (GNOME_CANVAS (container), x, y, &world_x, &world_y); - /* FIXME: These "can_accept_items" tests need to be done by + /* FIXME bugzilla.eazel.com 2485: + * These "can_accept_items" tests need to be done by * the icon view, not here. This file is not supposed to know * that the target is a file. */ @@ -995,7 +998,8 @@ nautilus_icon_dnd_update_drop_target (NautilusIconContainer *container, /* Find the item we hit with our drop, if any. */ icon = nautilus_icon_container_item_at (container, world_x, world_y); - /* FIXME: These "can_accept_items" tests need to be done by + /* FIXME bugzilla.eazel.com 2485: + * These "can_accept_items" tests need to be done by * the icon view, not here. This file is not supposed to know * that the target is a file. */ @@ -1099,7 +1103,8 @@ nautilus_icon_dnd_fini (NautilusIconContainer *container) stop_auto_scroll (container); if (container->details->dnd_info->shadow != NULL) { - /* FIXME: Is a destroy really sufficient here? Who does the unref? */ + /* FIXME bugzilla.eazel.com 2484: + * Is a destroy really sufficient here? Who does the unref? */ gtk_object_destroy (GTK_OBJECT (container->details->dnd_info->shadow)); } |