diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-09-05 03:33:15 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-09-05 03:33:15 +0800 |
commit | ee467a65b12c7e063763b58157632e093dc86991 (patch) | |
tree | fe41e2b556d33b5a716939139babf9c1b0c68ff1 /shell/ChangeLog | |
parent | 4270c51a98b6cc77a8337c6120195be4f620c775 (diff) | |
download | gsoc2013-evolution-ee467a65b12c7e063763b58157632e093dc86991.tar gsoc2013-evolution-ee467a65b12c7e063763b58157632e093dc86991.tar.gz gsoc2013-evolution-ee467a65b12c7e063763b58157632e093dc86991.tar.bz2 gsoc2013-evolution-ee467a65b12c7e063763b58157632e093dc86991.tar.lz gsoc2013-evolution-ee467a65b12c7e063763b58157632e093dc86991.tar.xz gsoc2013-evolution-ee467a65b12c7e063763b58157632e093dc86991.tar.zst gsoc2013-evolution-ee467a65b12c7e063763b58157632e093dc86991.zip |
Pass TRUE as @queue to e_shell_view_display_uri().
* e-shell.c (create_view): Pass TRUE as @queue to
e_shell_view_display_uri().
* e-shell-view-menu.c (command_activate_view): Pass TRUE as @queue
to e_shell_view_display_uri().
(goto_folder_dialog_folder_selected_cb): Likewise.
* e-shell-shared-folder-picker-dialog.c
(shared_folder_discovery_listener_callback): Pass TRUE as @queue
to e_shell_view_display_uri().
* e-shell-view.c
(display_uri): New arg @queue. If true, it allows the
delayed_selection mechanism to happen transparently (returning
TRUE, while before it used to return FALSE). Otherwise, refuse to
queue the URI and return FALSE.
(e_shell_view_display_uri): New arg @queue; pass it to
display_uri().
(handle_current_folder_removed): Pass TRUE as @queue to
e_shell_view_display_uri().
(set_folder_timeout): Likewise.
(switch_on_folder_tree_click): Likewise.
(activate_shortcut_cb): Likewise.
(corba_interface_change_current_view_cb): Likewise.
(socket_destroy_cb): Likewise.
(socket_destroy_cb): Likewise.
(e_shell_view_load_settings): Here, try displaying the old URI
with @queue set to FALSE; if this fails, display the default URI
and then invoke display again using @queue = TRUE so it gets
queued up. This should fix #27721.
svn path=/trunk/; revision=17972
Diffstat (limited to 'shell/ChangeLog')
-rw-r--r-- | shell/ChangeLog | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 7c710595a5..c9012b5ebf 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,5 +1,38 @@ 2002-09-04 Ettore Perazzoli <ettore@ximian.com> + * e-shell.c (create_view): Pass TRUE as @queue to + e_shell_view_display_uri(). + + * e-shell-view-menu.c (command_activate_view): Pass TRUE as @queue + to e_shell_view_display_uri(). + (goto_folder_dialog_folder_selected_cb): Likewise. + + * e-shell-shared-folder-picker-dialog.c + (shared_folder_discovery_listener_callback): Pass TRUE as @queue + to e_shell_view_display_uri(). + + * e-shell-view.c + (display_uri): New arg @queue. If true, it allows the + delayed_selection mechanism to happen transparently (returning + TRUE, while before it used to return FALSE). Otherwise, refuse to + queue the URI and return FALSE. + (e_shell_view_display_uri): New arg @queue; pass it to + display_uri(). + (handle_current_folder_removed): Pass TRUE as @queue to + e_shell_view_display_uri(). + (set_folder_timeout): Likewise. + (switch_on_folder_tree_click): Likewise. + (activate_shortcut_cb): Likewise. + (corba_interface_change_current_view_cb): Likewise. + (socket_destroy_cb): Likewise. + (socket_destroy_cb): Likewise. + (e_shell_view_load_settings): Here, try displaying the old URI + with @queue set to FALSE; if this fails, display the default URI + and then invoke display again using @queue = TRUE so it gets + queued up. This should fix #27721. + +2002-09-04 Ettore Perazzoli <ettore@ximian.com> + * main.c (idle_cb): Pass FALSE as @restore_all_views to e_shell_restore_from_settings() so we only restore the first view. |