diff options
author | Dan Williams <dcbw@redhat.com> | 2010-07-19 16:19:59 -0700 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2010-07-19 16:19:59 -0700 |
commit | e239bf15bb9787d15c429824b1e1176c35e978b6 (patch) | |
tree | e1164208beb66de6136469fcb876dd78b2cd5fe2 /src/mm-generic-gsm.c | |
parent | 56665c19af431234ebe1b22cff9f0f9b9fb3d02f (diff) |
core: handle shadow properties on the MmPropertiesChanged interface
Need to emit the D-Bus API property name, not the GObject property
name for a few things on the Location interface.
Diffstat (limited to 'src/mm-generic-gsm.c')
-rw-r--r-- | src/mm-generic-gsm.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mm-generic-gsm.c b/src/mm-generic-gsm.c index 3ad830f1..2154ca91 100644 --- a/src/mm-generic-gsm.c +++ b/src/mm-generic-gsm.c @@ -4062,27 +4062,33 @@ mm_generic_gsm_init (MMGenericGsm *self) mm_properties_changed_signal_register_property (G_OBJECT (self), MM_MODEM_GSM_NETWORK_ALLOWED_MODE, + NULL, MM_MODEM_GSM_NETWORK_DBUS_INTERFACE); mm_properties_changed_signal_register_property (G_OBJECT (self), MM_MODEM_GSM_NETWORK_ACCESS_TECHNOLOGY, + NULL, MM_MODEM_GSM_NETWORK_DBUS_INTERFACE); #if LOCATION_API mm_properties_changed_signal_register_property (G_OBJECT (self), MM_MODEM_LOCATION_CAPABILITIES, + "Capabilities", MM_MODEM_LOCATION_DBUS_INTERFACE); mm_properties_changed_signal_register_property (G_OBJECT (self), MM_MODEM_LOCATION_ENABLED, + "Enabled", MM_MODEM_LOCATION_DBUS_INTERFACE); mm_properties_changed_signal_register_property (G_OBJECT (self), MM_MODEM_LOCATION_SIGNALS_LOCATION, + NULL, MM_MODEM_LOCATION_DBUS_INTERFACE); mm_properties_changed_signal_register_property (G_OBJECT (self), MM_MODEM_LOCATION_LOCATION, + NULL, MM_MODEM_LOCATION_DBUS_INTERFACE); #endif |