diff options
author | Sankar P <psankar@novell.com> | 2005-03-09 19:45:50 +0800 |
---|---|---|
committer | Parthasarathi Susarla <saps@src.gnome.org> | 2005-03-09 19:45:50 +0800 |
commit | 8a715270108fbc63a3071b89aa258f53dea7190f (patch) | |
tree | 02ae764c2a0ef94c423dda7e27f007225113b6c4 | |
parent | 838492acd095d405b62887485f832daf237cf768 (diff) | |
download | gsoc2013-evolution-8a715270108fbc63a3071b89aa258f53dea7190f.tar gsoc2013-evolution-8a715270108fbc63a3071b89aa258f53dea7190f.tar.gz gsoc2013-evolution-8a715270108fbc63a3071b89aa258f53dea7190f.tar.bz2 gsoc2013-evolution-8a715270108fbc63a3071b89aa258f53dea7190f.tar.lz gsoc2013-evolution-8a715270108fbc63a3071b89aa258f53dea7190f.tar.xz gsoc2013-evolution-8a715270108fbc63a3071b89aa258f53dea7190f.tar.zst gsoc2013-evolution-8a715270108fbc63a3071b89aa258f53dea7190f.zip |
Updated code to add priority to the appropriate header Fixes the problem
2005-03-09 Sankar P <psankar@novell.com>
* send-options.c: (org_gnome_compose_send_options)
Updated code to add priority to the appropriate header
Fixes the problem of Priority not set in outgoing mails
svn path=/trunk/; revision=28988
-rwxr-xr-x | plugins/groupwise-send-options/ChangeLog | 6 | ||||
-rw-r--r-- | plugins/groupwise-send-options/send-options.c | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/plugins/groupwise-send-options/ChangeLog b/plugins/groupwise-send-options/ChangeLog index e8f166c727..e1a195818c 100755 --- a/plugins/groupwise-send-options/ChangeLog +++ b/plugins/groupwise-send-options/ChangeLog @@ -1,3 +1,9 @@ +2005-03-09 Sankar P <psankar@novell.com> + + * send-options.c: (org_gnome_compose_send_options) + Updated code to add priority to the appropriate header + Fixes the problem of Priority not set in outgoing mails + 2005-02-24 Björn Torkelsson <torkel@acc.umu.se> * org-gnome-compose-send-options.eplug.in: Shortened the name of diff --git a/plugins/groupwise-send-options/send-options.c b/plugins/groupwise-send-options/send-options.c index 7e8d71d610..d57b85193b 100644 --- a/plugins/groupwise-send-options/send-options.c +++ b/plugins/groupwise-send-options/send-options.c @@ -137,6 +137,12 @@ org_gnome_compose_send_options (EPlugin *ep, EMMenuTargetWidget *t) g_free (temp) ; } + if (dialog->data->gopts->priority) { + temp = g_strdup_printf ("%d",dialog->data->gopts->priority); + e_msg_composer_add_header (comp, X_SEND_OPT_PRIORITY,temp); + g_free (temp); + } + g_signal_connect (GTK_WIDGET (comp), "destroy", G_CALLBACK (send_options_commit), dialog); } |