diff options
author | Milan Crha <mcrha@redhat.com> | 2011-06-03 22:24:09 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:42:25 +0800 |
commit | 72725007fbfbd04dd0752c81e8d30eb68ff4e7be (patch) | |
tree | f03ae9ca3919f0f25cde504b2189e2f627ba8064 /addressbook | |
parent | e146d67bad3fb4d9c9b32ae4e79c354c0953f51e (diff) | |
download | gsoc2013-evolution-72725007fbfbd04dd0752c81e8d30eb68ff4e7be.tar.gz gsoc2013-evolution-72725007fbfbd04dd0752c81e8d30eb68ff4e7be.tar.zst gsoc2013-evolution-72725007fbfbd04dd0752c81e8d30eb68ff4e7be.zip |
Fix compiler warnings
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-quick-add.c | 4 |
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); |