diff options
author | Not Zed <NotZed@Ximian.com> | 2005-03-18 13:26:52 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2005-03-18 13:26:52 +0800 |
commit | d2033ff62526b5aab9fc3d369a45816127856899 (patch) | |
tree | 49e2c2dfeaeba1109b62b19fbc17e6f544403367 /shell/e-shell.c | |
parent | 44216ee03c710333c62dcce0d65ff57b2717d888 (diff) | |
download | gsoc2013-evolution-d2033ff62526b5aab9fc3d369a45816127856899.tar.gz gsoc2013-evolution-d2033ff62526b5aab9fc3d369a45816127856899.tar.zst gsoc2013-evolution-d2033ff62526b5aab9fc3d369a45816127856899.zip |
fix the qualifier bit assignments for the STATE target.
2005-03-17 Not Zed <NotZed@Ximian.com>
* es-event.h: fix the qualifier bit assignments for the STATE target.
* e-shell.c (offline_procedure_finished_cb): fix offline state event.
svn path=/trunk/; revision=29057
Diffstat (limited to 'shell/e-shell.c')
-rw-r--r-- | shell/e-shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c index d61ba3b8ed..f779e6d603 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -1095,7 +1095,7 @@ offline_procedure_finished_cb (EShellOfflineHandler *offline_handler, * Only the online and offline states are emitted. */ ese = es_event_peek(); - e_event_emit((EEvent *)ese, "state.changed", (EEventTarget *)es_event_target_new_state(ese, TRUE)); + e_event_emit((EEvent *)ese, "state.changed", (EEventTarget *)es_event_target_new_state(ese, !now_offline)); } /** |