aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarish Krishnaswamy <kharish@novell.com>2005-11-10 15:00:09 +0800
committerHarish Krishnaswamy <kharish@src.gnome.org>2005-11-10 15:00:09 +0800
commit1c36faf822e6370396e4737b00133e8f702572e3 (patch)
treecdd0cdba289cffb630e816465f727524486e5844
parent2a5d20d318549a8feb4f68b0f9933509114bcc1f (diff)
downloadgsoc2013-evolution-1c36faf822e6370396e4737b00133e8f702572e3.tar
gsoc2013-evolution-1c36faf822e6370396e4737b00133e8f702572e3.tar.gz
gsoc2013-evolution-1c36faf822e6370396e4737b00133e8f702572e3.tar.bz2
gsoc2013-evolution-1c36faf822e6370396e4737b00133e8f702572e3.tar.lz
gsoc2013-evolution-1c36faf822e6370396e4737b00133e8f702572e3.tar.xz
gsoc2013-evolution-1c36faf822e6370396e4737b00133e8f702572e3.tar.zst
gsoc2013-evolution-1c36faf822e6370396e4737b00133e8f702572e3.zip
Function signature specifies a void return. So, do not return NULL.
2005-11-10 Harish Krishnaswamy <kharish@novell.com> * mail-send-options.c: (org_gnome_compose_send_options): Function signature specifies a void return. So, do not return NULL. svn path=/trunk/; revision=30591
-rw-r--r--plugins/groupwise-features/ChangeLog6
-rw-r--r--plugins/groupwise-features/mail-send-options.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/plugins/groupwise-features/ChangeLog b/plugins/groupwise-features/ChangeLog
index 9142bcfb79..72d8ac0604 100644
--- a/plugins/groupwise-features/ChangeLog
+++ b/plugins/groupwise-features/ChangeLog
@@ -1,3 +1,9 @@
+2005-11-10 Harish Krishnaswamy <kharish@novell.com>
+
+ * mail-send-options.c: (org_gnome_compose_send_options):
+ Function signature specifies a void return. So, do not
+ return NULL.
+
2005-10-20 Sankar P <psankar@novell.com>
* proxy-login.c (org_gnome_proxy_account_login) (proxy_login_get_cnc):
diff --git a/plugins/groupwise-features/mail-send-options.c b/plugins/groupwise-features/mail-send-options.c
index 2d4e0f5066..19b48608de 100644
--- a/plugins/groupwise-features/mail-send-options.c
+++ b/plugins/groupwise-features/mail-send-options.c
@@ -145,7 +145,7 @@ org_gnome_compose_send_options (EPlugin *ep, EMMenuTargetWidget *t)
temp = strstr (url, "groupwise") ;
if (!temp) {
g_print ("Sorry send options only available for a groupwise account\n") ;
- return NULL;
+ return;
}
g_free (temp) ;
/*disply the send options dialog*/