diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-05-04 10:47:33 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-05-04 10:47:33 +0800 |
commit | be2f9a67f63403a95a96e0dfbd72a4c2e68e17c6 (patch) | |
tree | 8e7bf2f5fd9f86d8382ebecb5d469cc94e3ebdcf /shell/e-shell-offline-handler.c | |
parent | 7cfacb2f84e3189bed138326e788ea09bdb25eb8 (diff) | |
download | gsoc2013-evolution-be2f9a67f63403a95a96e0dfbd72a4c2e68e17c6.tar.gz gsoc2013-evolution-be2f9a67f63403a95a96e0dfbd72a4c2e68e17c6.tar.zst gsoc2013-evolution-be2f9a67f63403a95a96e0dfbd72a4c2e68e17c6.zip |
Complete the shell side for supporting off-line operations, getting
the dialog to fully work and the menu item to change its label
according to the current status of the line.
svn path=/trunk/; revision=9662
Diffstat (limited to 'shell/e-shell-offline-handler.c')
-rw-r--r-- | shell/e-shell-offline-handler.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/shell/e-shell-offline-handler.c b/shell/e-shell-offline-handler.c index 4a6ea1bb64..7a27998b67 100644 --- a/shell/e-shell-offline-handler.c +++ b/shell/e-shell-offline-handler.c @@ -191,10 +191,10 @@ impl_OfflineProgressListener_updateProgress (PortableServer_Servant servant, CORBA_free (component_info->active_connection_list); component_info->active_connection_list = duplicate_connection_list (current_active_connections); + update_dialog_clist (offline_handler); + if (priv->num_total_connections == 0) gtk_signal_emit (GTK_OBJECT (offline_handler), signals[OFFLINE_PROCEDURE_FINISHED], TRUE); - - update_dialog_clist (offline_handler); } static gboolean @@ -618,8 +618,8 @@ pop_up_confirmation_dialog (EShellOfflineHandler *offline_handler) dialog = glade_xml_get_widget (priv->dialog_gui, "active_connection_dialog"); /* FIXME: do we really want this? */ - gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (priv->parent_shell_view)); - gtk_window_set_modal (GTK_WINDOW (dialog), TRUE); + /* gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (priv->parent_shell_view)); */ + /* gtk_window_set_modal (GTK_WINDOW (dialog), TRUE); */ gnome_dialog_set_default (GNOME_DIALOG (dialog), 1); |