mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-02-10 02:00:37 +01:00
libnm: fix GObject properties of "NMDeviceModem"
Fixes:f18b09b3f6('libnm/modem: add device id getter') Fixes:0b3dd18c2b('libnm/modem: add network id getter') Fixes:8e270de05e('libnm/modem: add APN getter')
This commit is contained in:
parent
57c1b03c5c
commit
389c2ebe8a
1 changed files with 3 additions and 3 deletions
|
|
@ -321,7 +321,7 @@ nm_device_modem_class_init (NMDeviceModemClass *modem_class)
|
|||
* Since: 1.20
|
||||
**/
|
||||
g_object_class_install_property
|
||||
(object_class, PROP_CURRENT_CAPS,
|
||||
(object_class, PROP_DEVICE_ID,
|
||||
g_param_spec_string (NM_DEVICE_MODEM_DEVICE_ID, "", "",
|
||||
NULL,
|
||||
G_PARAM_READABLE |
|
||||
|
|
@ -333,7 +333,7 @@ nm_device_modem_class_init (NMDeviceModemClass *modem_class)
|
|||
* Since: 1.20
|
||||
**/
|
||||
g_object_class_install_property
|
||||
(object_class, PROP_CURRENT_CAPS,
|
||||
(object_class, PROP_OPERATOR_CODE,
|
||||
g_param_spec_string (NM_DEVICE_MODEM_OPERATOR_CODE, "", "",
|
||||
NULL,
|
||||
G_PARAM_READABLE |
|
||||
|
|
@ -345,7 +345,7 @@ nm_device_modem_class_init (NMDeviceModemClass *modem_class)
|
|||
* Since: 1.20
|
||||
**/
|
||||
g_object_class_install_property
|
||||
(object_class, PROP_CURRENT_CAPS,
|
||||
(object_class, PROP_APN,
|
||||
g_param_spec_string (NM_DEVICE_MODEM_APN, "", "",
|
||||
NULL,
|
||||
G_PARAM_READABLE |
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue