aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-10-29 11:32:26 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-10-29 11:32:26 +0800
commit815ed53e5ace2948695f99a43a555f66e1ff408e (patch)
tree11be17372519650f6e969bb86dcafc06813ca677 /shell
parent7ffad86d872af64e2d2925b1652248506b5197c4 (diff)
downloadgsoc2013-evolution-815ed53e5ace2948695f99a43a555f66e1ff408e.tar
gsoc2013-evolution-815ed53e5ace2948695f99a43a555f66e1ff408e.tar.gz
gsoc2013-evolution-815ed53e5ace2948695f99a43a555f66e1ff408e.tar.bz2
gsoc2013-evolution-815ed53e5ace2948695f99a43a555f66e1ff408e.tar.lz
gsoc2013-evolution-815ed53e5ace2948695f99a43a555f66e1ff408e.tar.xz
gsoc2013-evolution-815ed53e5ace2948695f99a43a555f66e1ff408e.tar.zst
gsoc2013-evolution-815ed53e5ace2948695f99a43a555f66e1ff408e.zip
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
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog14
-rw-r--r--shell/e-shell-view.c16
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 <ettore@ximian.com>
+
+ * 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 <NotZed@Ximian.com>
* 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)