summaryrefslogtreecommitdiff
path: root/AUTHORS
diff options
context:
space:
mode:
authorMaciej Stachowiak <mjs@eazel.com>2000-01-04 03:06:28 +0000
committerMaciej Stachowiak <mstachow@src.gnome.org>2000-01-04 03:06:28 +0000
commite992a1c7c84c383235d025bab8add3aeea623260 (patch)
treef09487b1be3b46d14f2efd23ce5405145e1724f0 /AUTHORS
parent2e9f835f7e305b2346ff4fe3583497a91272a866 (diff)
downloadnautilus-e992a1c7c84c383235d025bab8add3aeea623260.tar.gz
Fix warnings.
2000-01-03 Maciej Stachowiak <mjs@eazel.com> * src/ntl-prefs.c: Fix warnings. * src/ntl-view.c, src/ntl-view.h, src/ntl-view-frame-svr.c (nautilus_view_notify_location_change, nautilus_view_notify_selection_change, nautilus_view_load_state, nautilus_view_save_state, nautilus_view_show_properties): Made these functions public and removed the corresponding signals; these are operations you do to the NautilusView, not something it informs other parts of the program of. (request_location_change, request_selection_change, request_status_change, request_progress_change): New signals. These allow NautilusView to have less dependence on NautilusWindow. (nautilus_view_signals): Moved signal number table from view to this static variable. (nautilus_view_request_location_change, nautilus_view_request_selection_change, nautilus_view_request_status_change, nautilus_view_request_progress_change): Move to ntl-view.c and make them emit the proper signals in lieu of hardcoded handling. * src/ntl-window.c, src/ntl-window.h src/ntl-window-msgs.c, src/ntl-window-msgs.h, src/ntl-window-state.c (request_location_change, request_selection_change, request_status_change, request_progress_change): Removed these signals; they are operations you do on a NautilusWindow, not something it notifies you of, and any usefulness for inheritance purposes is purely speculative right now. (nautilus_window_connect_view, nautilus_window_disconnect_view): Use these new helper functions to connect callbacks to NautilusView's signals instead of expecting them to just get called. (nautilus_view_request_location_change, nautilus_view_request_selection_change, nautilus_view_request_status_change, nautilus_view_request_progress_change): Execute bodies of real_ versions instead of emitting singals. (nautilus_view_real_request_location_change, nautilus_view_real_request_selection_change, nautilus_view_real_request_status_change, nautilus_view_real_request_progress_change): Removed these. Finally, always call nautilus_winodow_set_content_view or nautilus_window_add_meta_view before calling nautilus_view_load_client to make sure no signals are lost.
Diffstat (limited to 'AUTHORS')
-rw-r--r--AUTHORS1
1 files changed, 1 insertions, 0 deletions
diff --git a/AUTHORS b/AUTHORS
index 3a5ff5a1a..703234138 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -2,3 +2,4 @@ Darin Adler <darin@eazel.com>
Elliot Lee <sopwith@redhat.com>
Ettore Perazzoli <ettore@gnu.org>
John Sullivan <sullivan@eazel.com>
+Maciej Stachowiak <mjs@eazel.com>