From 815ed53e5ace2948695f99a43a555f66e1ff408e Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Mon, 29 Oct 2001 03:32:26 +0000 Subject: Don't do the `gtk_signal_disconnect_by_func()' as it's already done in * e-shell-view.c (new_folder_cb): Don't do the `gtk_signal_disconnect_by_func()' as it's already done in `cleanup_delayed_selection()'. (e_shell_view_construct): Set the ->shell member as the first thing. (set_current_notebook_page): Add a cast to make the compiler happy. (new_folder_cb): Don't set priv->uri before calling `e_shell_view_display_uri()', because the latter does it anyways, and also if you set it before calling it, the selection in the folder tree doesn't get updated properly. svn path=/trunk/; revision=14319 --- shell/ChangeLog | 14 ++++++++++++++ shell/e-shell-view.c | 16 ++++++++-------- 2 files changed, 22 insertions(+), 8 deletions(-) diff --git a/shell/ChangeLog b/shell/ChangeLog index 3236b994fc..0076f7cc0d 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,17 @@ +2001-10-28 Ettore Perazzoli + + * e-shell-view.c (new_folder_cb): Don't do the + `gtk_signal_disconnect_by_func()' as it's already done in + `cleanup_delayed_selection()'. + (e_shell_view_construct): Set the ->shell member as the first + thing. + (set_current_notebook_page): Add a cast to make the compiler + happy. + (new_folder_cb): Don't set priv->uri before calling + `e_shell_view_display_uri()', because the latter does it anyways, + and also if you set it before calling it, the selection in the + folder tree doesn't get updated properly. + 2001-10-29 * evolution-storage.c (class_init): Set the return type of the diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c index a87bcd5152..4e1789e1eb 100644 --- a/shell/e-shell-view.c +++ b/shell/e-shell-view.c @@ -645,13 +645,12 @@ new_folder_cb (EStorageSet *storage_set, if (delayed_path) { delayed_path ++; if (!strcmp(path, delayed_path)) { - gtk_signal_disconnect_by_func (GTK_OBJECT (e_shell_get_storage_set(priv->shell)), - GTK_SIGNAL_FUNC (new_folder_cb), - shell_view); - g_free (priv->uri); - priv->uri = g_strdup (priv->delayed_selection); + char *uri; + + uri = g_strdup (priv->delayed_selection); cleanup_delayed_selection (shell_view); - e_shell_view_display_uri (shell_view, priv->uri); + e_shell_view_display_uri (shell_view, uri); + g_free (uri); } } } @@ -1371,9 +1370,10 @@ e_shell_view_construct (EShellView *shell_view, return NULL; } + priv->shell = shell; + gtk_signal_connect (GTK_OBJECT (view), "delete_event", GTK_SIGNAL_FUNC (delete_event_cb), NULL); - priv->shell = shell; gtk_signal_connect_while_alive (GTK_OBJECT (e_shell_get_storage_set (priv->shell)), "updated_folder", updated_folder_cb, shell_view, @@ -1686,7 +1686,7 @@ set_current_notebook_page (EShellView *shell_view, bonobo_control_frame_control_deactivate (control_frame); } - e_shell_folder_title_bar_set_folder_bar_label (priv->folder_title_bar, ""); + e_shell_folder_title_bar_set_folder_bar_label (E_SHELL_FOLDER_TITLE_BAR (priv->folder_title_bar), ""); gtk_notebook_set_page (notebook, page_num); if (page_num == -1 || page_num == 0) -- cgit v1.2.3