diff options
author | Vivek Jain <jvivek@novell.com> | 2005-03-18 13:57:05 +0800 |
---|---|---|
committer | Jain Vivek <jvivek@src.gnome.org> | 2005-03-18 13:57:05 +0800 |
commit | 17727dffed055a4e407183459b0cc08ae8e78c0d (patch) | |
tree | 5afe4bf03cea674a3de5ac33491a404f96c7af79 | |
parent | f364fb58850edbe6fa49792868e9af3d0356b518 (diff) | |
download | gsoc2013-evolution-17727dffed055a4e407183459b0cc08ae8e78c0d.tar.gz gsoc2013-evolution-17727dffed055a4e407183459b0cc08ae8e78c0d.tar.zst gsoc2013-evolution-17727dffed055a4e407183459b0cc08ae8e78c0d.zip |
replace X_RETURN_NOTIFY_DECLINE with X_RETURN_NOTIFY_DELETE
2005-03-18 Vivek Jain <jvivek@novell.com>
* send-options.h:
* send-options.c: (org_gnome_compose_send_options): replace
X_RETURN_NOTIFY_DECLINE with X_RETURN_NOTIFY_DELETE
svn path=/trunk/; revision=29059
-rwxr-xr-x | plugins/groupwise-send-options/ChangeLog | 6 | ||||
-rw-r--r-- | plugins/groupwise-send-options/send-options.c | 2 | ||||
-rw-r--r-- | plugins/groupwise-send-options/send-options.h | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/plugins/groupwise-send-options/ChangeLog b/plugins/groupwise-send-options/ChangeLog index 00b9b221fd..a30e208dcc 100755 --- a/plugins/groupwise-send-options/ChangeLog +++ b/plugins/groupwise-send-options/ChangeLog @@ -1,3 +1,9 @@ +2005-03-18 Vivek Jain <jvivek@novell.com> + + * send-options.h: + * send-options.c: (org_gnome_compose_send_options): replace + X_RETURN_NOTIFY_DECLINE with X_RETURN_NOTIFY_DELETE + 2005-03-18 Vivek Jain <jvivek@novell.com> **Fixes #73473 diff --git a/plugins/groupwise-send-options/send-options.c b/plugins/groupwise-send-options/send-options.c index 75f6b5a2ce..be08050076 100644 --- a/plugins/groupwise-send-options/send-options.c +++ b/plugins/groupwise-send-options/send-options.c @@ -133,7 +133,7 @@ org_gnome_compose_send_options (EPlugin *ep, EMMenuTargetWidget *t) } if (dialog->data->sopts->declined) { temp = g_strdup_printf ("%d",dialog->data->sopts->declined) ; - e_msg_composer_add_header (comp, X_RETURN_NOTIFY_DECLINE, temp) ; + e_msg_composer_add_header (comp, X_RETURN_NOTIFY_DELETE, temp) ; g_free (temp) ; } diff --git a/plugins/groupwise-send-options/send-options.h b/plugins/groupwise-send-options/send-options.h index 76c79a2a00..0e6ef03ec5 100644 --- a/plugins/groupwise-send-options/send-options.h +++ b/plugins/groupwise-send-options/send-options.h @@ -35,6 +35,6 @@ #define X_TRACK_WHEN "X-track-when" #define X_AUTODELETE "X-auto-delete" #define X_RETURN_NOTIFY_OPEN "X-return-notify-open" -#define X_RETURN_NOTIFY_DECLINE "X-return-notify-decline" +#define X_RETURN_NOTIFY_DELETE "X-return-notify-delete" #endif /*__GW_SEND_OPTIONS__*/ |