aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2011-06-03 22:24:09 +0800
committerMilan Crha <mcrha@redhat.com>2011-06-03 22:24:09 +0800
commitaac5be7ab9e0d315c7889bfeeb6b72094306e08d (patch)
tree9d9d2ca8aad056eb2ec673ae5e2ea2d0c15660a5 /addressbook/gui
parente246eac779f3451967835abbe2f35fb74622bc40 (diff)
downloadgsoc2013-evolution-aac5be7ab9e0d315c7889bfeeb6b72094306e08d.tar
gsoc2013-evolution-aac5be7ab9e0d315c7889bfeeb6b72094306e08d.tar.gz
gsoc2013-evolution-aac5be7ab9e0d315c7889bfeeb6b72094306e08d.tar.bz2
gsoc2013-evolution-aac5be7ab9e0d315c7889bfeeb6b72094306e08d.tar.lz
gsoc2013-evolution-aac5be7ab9e0d315c7889bfeeb6b72094306e08d.tar.xz
gsoc2013-evolution-aac5be7ab9e0d315c7889bfeeb6b72094306e08d.tar.zst
gsoc2013-evolution-aac5be7ab9e0d315c7889bfeeb6b72094306e08d.zip
Fix compiler warnings
Diffstat (limited to 'addressbook/gui')
-rw-r--r--addressbook/gui/contact-editor/e-contact-quick-add.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/addressbook/gui/contact-editor/e-contact-quick-add.c b/addressbook/gui/contact-editor/e-contact-quick-add.c
index 44f6354162..c7a42233c2 100644
--- a/addressbook/gui/contact-editor/e-contact-quick-add.c
+++ b/addressbook/gui/contact-editor/e-contact-quick-add.c
@@ -322,11 +322,11 @@ clicked_cb (GtkWidget *w, gint button, gpointer closure)
e_contact_set (
qa->contact, E_CONTACT_FULL_NAME,
- (gpointer) (name != NULL) ? name : "");
+ (name != NULL) ? name : "");
e_contact_set (
qa->contact, E_CONTACT_EMAIL_1,
- (gpointer) (email != NULL) ? email : "");
+ (email != NULL) ? email : "");
g_free (name);
g_free (email);