summaryrefslogtreecommitdiffstats
path: root/src/call-settings.c
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2009-07-29 10:26:55 -0500
committerDenis Kenzior <denkenz@gmail.com>2009-07-29 12:26:05 -0500
commit6728542a012fc57afd051bdac8f26c89b707b4a2 (patch)
tree58587f44ffa2187be0d1b6b8962b6df6970bee94 /src/call-settings.c
parentd9025e13e1bc7fd697e8d68ef858b611bc7c5548 (diff)
downloadofono-6728542a012fc57afd051bdac8f26c89b707b4a2.tar.bz2
Rename dbus_gsm_dict_append
Diffstat (limited to 'src/call-settings.c')
-rw-r--r--src/call-settings.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/call-settings.c b/src/call-settings.c
index e28b9eae..1368f1db 100644
--- a/src/call-settings.c
+++ b/src/call-settings.c
@@ -295,7 +295,7 @@ static void property_append_cw_conditions(DBusMessageIter *dict,
else
value = "disabled";
- dbus_gsm_dict_append(dict, prop, DBUS_TYPE_STRING, &value);
+ ofono_dbus_dict_append(dict, prop, DBUS_TYPE_STRING, &value);
}
}
@@ -785,23 +785,23 @@ static DBusMessage *generate_get_properties_reply(struct ofono_modem *modem,
&dict);
str = clip_status_to_string(cs->clip);
- dbus_gsm_dict_append(&dict, "CallingLinePresentation",
+ ofono_dbus_dict_append(&dict, "CallingLinePresentation",
DBUS_TYPE_STRING, &str);
str = colp_status_to_string(cs->colp);
- dbus_gsm_dict_append(&dict, "CalledLinePresentation",
+ ofono_dbus_dict_append(&dict, "CalledLinePresentation",
DBUS_TYPE_STRING, &str);
str = colr_status_to_string(cs->colr);
- dbus_gsm_dict_append(&dict, "CalledLineRestriction",
+ ofono_dbus_dict_append(&dict, "CalledLineRestriction",
DBUS_TYPE_STRING, &str);
str = clir_status_to_string(cs->clir);
- dbus_gsm_dict_append(&dict, "CallingLineRestriction",
+ ofono_dbus_dict_append(&dict, "CallingLineRestriction",
DBUS_TYPE_STRING, &str);
str = hide_callerid_to_string(cs->clir_setting);
- dbus_gsm_dict_append(&dict, "HideCallerId", DBUS_TYPE_STRING, &str);
+ ofono_dbus_dict_append(&dict, "HideCallerId", DBUS_TYPE_STRING, &str);
property_append_cw_conditions(&dict, cs->cw, BEARER_CLASS_VOICE);