summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2011-01-18 14:00:36 -0600
committerDenis Kenzior <denkenz@gmail.com>2011-01-18 16:09:28 -0600
commitf4ea5142ac6cff0582b1144153ea3df7f45f936f (patch)
tree91db88d1839a62a8fed6d3cfdb841462b1665c38 /src
parent5d482d34bb0395db59e7fecc346c38125ce47c5b (diff)
downloadofono-f4ea5142ac6cff0582b1144153ea3df7f45f936f.tar.bz2
voicecall: Update to the new API
Diffstat (limited to 'src')
-rw-r--r--src/voicecall.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/voicecall.c b/src/voicecall.c
index b96c417d..77fa75af 100644
--- a/src/voicecall.c
+++ b/src/voicecall.c
@@ -374,7 +374,7 @@ static void append_voicecall_properties(struct voicecall *v,
const char *calledid;
calledid = phone_number_to_string(&call->called_number);
- ofono_dbus_dict_append(dict, "CalledLineIdentification",
+ ofono_dbus_dict_append(dict, "IncomingLine",
DBUS_TYPE_STRING, &calledid);
}
@@ -808,8 +808,10 @@ static void voicecall_set_call_calledid(struct voicecall *v,
calledid_str = phone_number_to_string(ph);
ofono_dbus_signal_property_changed(conn, path,
- OFONO_VOICECALL_INTERFACE, "CalledLineIdentification",
- DBUS_TYPE_STRING, &calledid_str);
+ OFONO_VOICECALL_INTERFACE,
+ "IncomingLine",
+ DBUS_TYPE_STRING,
+ &calledid_str);
}