summaryrefslogtreecommitdiff
path: root/libnautilus
diff options
context:
space:
mode:
authorDarin Adler <darin@src.gnome.org>2000-08-18 18:44:37 +0000
committerDarin Adler <darin@src.gnome.org>2000-08-18 18:44:37 +0000
commit3685f79f919a0a560e065f49d2b24abeaad4f20d (patch)
tree2ce0375d420206e2525b4866f18c8af1a178f20c /libnautilus
parenta4a43d4d4418a9d1794ccb2d59e3e55a42f5e5c3 (diff)
downloadnautilus-3685f79f919a0a560e065f49d2b24abeaad4f20d.tar.gz
Fixed bug 2210 (GNOME is referred to as Gnome in the about dialog). It was
* src/nautilus-window-menus.c: (help_menu_about_nautilus_callback): * libnautilus-extensions/nautilus-program-chooser.c: (nautilus_program_chooser_new), (nautilus_program_chooser_show_no_choices_message): Fixed bug 2210 (GNOME is referred to as Gnome in the about dialog). It was in one other place too. * libnautilus/nautilus-view-component.idl: Fixed some comments. * libnautilus-extensions/nautilus-directory-private.h: * libnautilus-extensions/nautilus-directory-async.c: (dequeue_pending_idle_callback): * libnautilus-extensions/nautilus-directory.c: (nautilus_directory_emit_files_changed), (nautilus_directory_emit_change_signals_deep), (nautilus_directory_emit_metadata_changed), (call_files_changed_free_list), (call_files_changed_unref_free_list): * libnautilus-extensions/nautilus-file.c: (nautilus_file_changed): Separated out the call so you can emit a files_changed without also emitting a changed signal on each file. * libnautilus-extensions/nautilus-trash-directory.h: * libnautilus-extensions/nautilus-trash-directory.c: (trash_callback_remove_directory), (directory_ready_callback), (forward_files_added_cover), (forward_files_changed_cover), (nautilus_trash_directory_add_real_directory), (trash_callback_remove_directory_cover), (nautilus_trash_directory_remove_real_directory), (remove_all_real_directories), (fm_desktop_icon_view_discover_trash_callback), (add_one_writable_device), (get_trashable_volume_uris), (nautilus_trash_monitor_async_get_trash_directories): More trash work. A bunch is commented out. I'm doing this *so* slowly, but I need to check in at this point for Gene's sake. * libnautilus-extensions/nautilus-volume-monitor.h: * libnautilus-extensions/nautilus-volume-monitor.c: (nautilus_volume_monitor_initialize_class), (mount_device_activate), (mount_device_deactivate): Changed the signals to be both more useful and easier to use. * src/file-manager/fm-desktop-icon-view.c: (fm_desktop_icon_view_initialize): * src/file-manager/nautilus-trash-monitor.c: Moved 1/2-written trash code out of here. * HACKING: Spell checking.
Diffstat (limited to 'libnautilus')
-rw-r--r--libnautilus/nautilus-view-component.idl20
1 files changed, 9 insertions, 11 deletions
diff --git a/libnautilus/nautilus-view-component.idl b/libnautilus/nautilus-view-component.idl
index 9f2414da2..d4ae4827e 100644
--- a/libnautilus/nautilus-view-component.idl
+++ b/libnautilus/nautilus-view-component.idl
@@ -14,9 +14,9 @@ module Nautilus {
typedef sequence<URI> URIList;
/* The View interface is used by the Nautilus shell to control
- * the view. The view is always a Bonobo::Control, but can
- * choose to implement the View interface for additional finer
- * control by Nautilus.
+ * the view. A view that is a Bonobo::Control can choose to
+ * implement the View interface for additional finer control
+ * by Nautilus.
*/
interface View : ::Bonobo::Unknown {
/* Called to tell the view about location changes.
@@ -31,10 +31,8 @@ module Nautilus {
oneway void stop_loading ();
/* Called to tell the view about selection changes.
- * Like load, it's called on all views except the one
- * that calls report_selection_change. If you call
- * set_selection instead, it's called on all views,
- * even the requesting one.
+ * It's called on all views except the one that calls
+ * report_selection_change.
*/
oneway void selection_changed (in URIList selection);
};
@@ -46,10 +44,10 @@ module Nautilus {
interface ViewFrame : ::Bonobo::Unknown {
/* Called by the view component to change the location
* shown in the window or to open a new window. The
- * report version is used when the view has already
+ * "report" version is used when the view has already
* changed its location and would confused by an
- * additional load call. It is deprecated, and you
- * should use it only if absolutely necessary.
+ * additional load call, but it's deprecated and may
+ * be removed from a future version of this interface.
*/
oneway void open_location (in URI location);
oneway void open_location_in_new_window (in URI location);
@@ -92,7 +90,7 @@ module Nautilus {
/* The interface for something zoomable. Nautilus looks for
* this interface on Bonobo controls that it uses as views. If
- * the interface is present, it shows a control in the toolbar
+ * the interface is present, it shows a widget in the toolbar
* for zooming. It's still the component's job to save the
* zoom level.
*/