contacts: load new contacts when they're added

Connect to the EBookClientView to be able to react to
changes in the addressbook.

This patch reacts to contacts being added. Later patches
will react to contacts being removed and modified.

Refs #73494

Change-Id: I939ee48103caa07c87e3be957ea42c1ba95c9cc7
diff --git a/src/callsview.cpp b/src/callsview.cpp
index 17873d9..6bc33a1 100644
--- a/src/callsview.cpp
+++ b/src/callsview.cpp
@@ -239,7 +239,7 @@
     priv->selection_updated = QObject::connect(
         CallModel::instance()->selectionModel(),
         &QItemSelectionModel::currentChanged,
-        [=](const QModelIndex & current, const QModelIndex & previous) {
+        [=](const QModelIndex current, const QModelIndex & previous) {
             GtkTreeSelection *selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(priv->treeview_calls));
 
             /* first unselect the previous */
@@ -311,4 +311,4 @@
     CallsViewPrivate *priv = CALLS_VIEW_GET_PRIVATE(calls_view);
 
     return gtk_tree_view_get_selection(GTK_TREE_VIEW(priv->treeview_calls));
-}
\ No newline at end of file
+}