diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2008-11-24 13:14:44 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-11-24 13:14:44 +0800 |
commit | 4f4615a46d5ba518c1e6a0c2412b1edf1e268d99 (patch) | |
tree | 828acaa7b76aa12a490a3238b0ec4a7086b8be16 /plugins/groupwise-features | |
parent | 076b7c45131482b87d18963d34d035435491ee8d (diff) | |
download | gsoc2013-evolution-4f4615a46d5ba518c1e6a0c2412b1edf1e268d99.tar gsoc2013-evolution-4f4615a46d5ba518c1e6a0c2412b1edf1e268d99.tar.gz gsoc2013-evolution-4f4615a46d5ba518c1e6a0c2412b1edf1e268d99.tar.bz2 gsoc2013-evolution-4f4615a46d5ba518c1e6a0c2412b1edf1e268d99.tar.lz gsoc2013-evolution-4f4615a46d5ba518c1e6a0c2412b1edf1e268d99.tar.xz gsoc2013-evolution-4f4615a46d5ba518c1e6a0c2412b1edf1e268d99.tar.zst gsoc2013-evolution-4f4615a46d5ba518c1e6a0c2412b1edf1e268d99.zip |
Merge revisions 36737:36810 from trunk.
svn path=/branches/kill-bonobo/; revision=36811
Diffstat (limited to 'plugins/groupwise-features')
-rw-r--r-- | plugins/groupwise-features/ChangeLog | 7 | ||||
-rw-r--r-- | plugins/groupwise-features/status-track.c | 10 |
2 files changed, 7 insertions, 10 deletions
diff --git a/plugins/groupwise-features/ChangeLog b/plugins/groupwise-features/ChangeLog index 9f9161496f..1fb67ff518 100644 --- a/plugins/groupwise-features/ChangeLog +++ b/plugins/groupwise-features/ChangeLog @@ -1,3 +1,10 @@ +2008-11-20 Bharath Acharya <abharath@novell.com> + + ** Fix for bug bnc #446286 + + * status-track.c: (track_status): Remove the header check as we do a + e_gw_connection_get_item for tracking the status. + 2008-11-04 Sankar P <psankar@novell.com> ** Fix for bug bnc #434968 diff --git a/plugins/groupwise-features/status-track.c b/plugins/groupwise-features/status-track.c index cb9e0d8028..65b66962c5 100644 --- a/plugins/groupwise-features/status-track.c +++ b/plugins/groupwise-features/status-track.c @@ -79,8 +79,6 @@ track_status (EPopup *ep, EPopupItem *item, void *data) gchar *boldmsg; - const char *status = NULL ; - int row = 0; EGwConnection *cnc; @@ -93,14 +91,6 @@ track_status (EPopup *ep, EPopupItem *item, void *data) return ; } - status = camel_medium_get_header ( CAMEL_MEDIUM(msg), "X-gw-status-opt") ; - if (!status) { - g_print ("Error!! No header\n"); - /* No need to make any call if this header is not available. - This is the server side identifier for sent-items */ - return ; - } - /*Create the dialog*/ d = (GtkDialog *) gtk_dialog_new (); gtk_dialog_add_button (d, GTK_STOCK_OK, GTK_RESPONSE_OK); |