diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-01 11:11:28 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-16 14:53:19 +0100 |
commit | ef9fb0bfacac348c5bab35a3a99d52270e510d99 (patch) | |
tree | 770ed4088a84a885b53412bd4b970371b7e2f394 /libmm-glib/mm-modem-messaging.c | |
parent | 3ccc78e8588acec9632863d30e310cdc76ad8598 (diff) |
libmm-common: `MMSmsProperties' won't be considered internal any more
Renamed `MMCommonSmsProperties' to `MMSmsProperties', and removed the
`MMSmsProperties' provided in libmm-glib. We'll just use the original one
from libmm-common always.
Diffstat (limited to 'libmm-glib/mm-modem-messaging.c')
-rw-r--r-- | libmm-glib/mm-modem-messaging.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libmm-glib/mm-modem-messaging.c b/libmm-glib/mm-modem-messaging.c index 7eabf6a3..7cd473b2 100644 --- a/libmm-glib/mm-modem-messaging.c +++ b/libmm-glib/mm-modem-messaging.c @@ -405,8 +405,7 @@ mm_modem_messaging_create (MMModemMessaging *self, if (cancellable) ctx->cancellable = g_object_ref (cancellable); - dictionary = (mm_common_sms_properties_get_dictionary ( - MM_COMMON_SMS_PROPERTIES (properties))); + dictionary = (mm_sms_properties_get_dictionary (properties)); mm_gdbus_modem_messaging_call_create ( self, dictionary, @@ -443,8 +442,7 @@ mm_modem_messaging_create_sync (MMModemMessaging *self, g_return_val_if_fail (MM_GDBUS_IS_MODEM_MESSAGING (self), NULL); - dictionary = (mm_common_sms_properties_get_dictionary ( - MM_COMMON_SMS_PROPERTIES (properties))); + dictionary = (mm_sms_properties_get_dictionary (properties)); mm_gdbus_modem_messaging_call_create_sync (self, dictionary, &sms_path, |