diff --git a/gnome/src/contacts/addressbook.h b/gnome/src/contacts/addressbook.h
index c9d7b997427caae891b86dd7e638ed59a47a64d3..f99b44996d48c88305a052563a2284449af1f947 100644
--- a/gnome/src/contacts/addressbook.h
+++ b/gnome/src/contacts/addressbook.h
@@ -39,10 +39,6 @@
 #define __ADDRESSBOOK_H__
 
 #include <gtk/gtk.h>
-// #include <addressbook/eds.h>
-
-
-#define EMPTY_ENTRY     "empty"
 
 typedef enum {ABOOK_QUERY_IS, ABOOK_QUERY_BEGINS_WITH, ABOOK_QUERY_CONTAINS} AddrbookSearchType;
 
@@ -94,41 +90,4 @@ struct AddrBookHandle {
     void (*search_cb)(GList *, gpointer); 
 };
 
-/**
- * Initialize addressbook
- */
-void addressbook_init(gchar **book_list);
-
-/**
- * Return addressbook state
- */
-gboolean addressbook_is_ready();
-
-/**
- * Return addressbook state
- */
-gboolean addressbook_is_enabled();
-
-/**
- * Return if at least one addressbook is active
- */
-gboolean addressbook_is_active();
-
-
-/**
- * Perform a search in addressbook
- */
-void addressbook_search (AddrBookHandle *, GtkEntry *, AddressBook_Config *);
-
-/**
- * Get a list of addressbook book
- */
-GSList *addressbook_get_books_data(gchar **book_list);
-
-book_data_t *addressbook_get_book_data_by_uid(gchar *);
-
-void addressbook_set_current_book(gchar *);
-
-void addressbook_set_search_type(AddrbookSearchType);
-
 #endif
diff --git a/gnome/src/contacts/calllist.c b/gnome/src/contacts/calllist.c
index ff0bb05d45931ddf9698fbde7c64bc577092e338..99da37e44f2ac644869ace25731778368491700f 100644
--- a/gnome/src/contacts/calllist.c
+++ b/gnome/src/contacts/calllist.c
@@ -47,7 +47,7 @@ gint is_callID_callstruct(gconstpointer a, gconstpointer b)
 void calllist_add_contact (gchar *contact_name, gchar *contact_phone, contact_type_t type, GdkPixbuf *photo)
 {
     /* Check if the information is valid */
-    if (g_strcasecmp (contact_phone, EMPTY_ENTRY) == 0)
+    if (g_strcasecmp (contact_phone, "empty") == 0)
         return;
 
     callable_obj_t *new_call = create_new_call (CONTACT, CALL_STATE_DIALING, "", "", contact_name, contact_phone);