diff options
author | Srinivasa Ragavan <sragavan@novell.com> | 2008-01-18 14:53:39 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2008-01-18 14:53:39 +0800 |
commit | de7843234354f8aec863a80b3d354818603023a6 (patch) | |
tree | 77b54a9df027143c18e6db2aed71823de89c3183 /shell/e-shell.h | |
parent | cd14d28ca592cccf52c2c886334f266c1ac46359 (diff) | |
download | gsoc2013-evolution-de7843234354f8aec863a80b3d354818603023a6.tar.gz gsoc2013-evolution-de7843234354f8aec863a80b3d354818603023a6.tar.zst gsoc2013-evolution-de7843234354f8aec863a80b3d354818603023a6.zip |
** Fix for bug #329712
2008-01-18 Srinivasa Ragavan <sragavan@novell.com>
** Fix for bug #329712
* e-shell-window-commands.c: (update_offline_menu_item):
* e-shell-window.c: (update_offline_toggle_status),
(update_send_receive_sensitivity),
(offline_toggle_clicked_callback):
* e-shell.c: (e_shell_construct), (e_shell_save_settings),
(set_line_status):
* e-shell.h: Add a new state to maintian forced offline.
svn path=/trunk/; revision=34847
Diffstat (limited to 'shell/e-shell.h')
-rw-r--r-- | shell/e-shell.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/e-shell.h b/shell/e-shell.h index 958bb33581..a255edd573 100644 --- a/shell/e-shell.h +++ b/shell/e-shell.h @@ -51,7 +51,8 @@ typedef struct _EShellClass EShellClass; enum _EShellLineStatus { E_SHELL_LINE_STATUS_ONLINE, E_SHELL_LINE_STATUS_GOING_OFFLINE, /* NB: really means changing state in either direction */ - E_SHELL_LINE_STATUS_OFFLINE + E_SHELL_LINE_STATUS_OFFLINE, + E_SHELL_LINE_STATUS_FORCED_OFFLINE }; typedef enum _EShellLineStatus EShellLineStatus; |