mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-11 19:10:24 +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') (cherry picked from commit389c2ebe8a)
This commit is contained in:
parent
d35055ceee
commit
1c0b400fa7
1 changed files with 3 additions and 3 deletions
|
|
@ -335,7 +335,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 |
|
||||
|
|
@ -347,7 +347,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 |
|
||||
|
|
@ -359,7 +359,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