summaryrefslogtreecommitdiff
path: root/libnm-glib/nm-device-vlan.c
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2014-06-09 16:17:37 -0400
committerDan Winship <danw@gnome.org>2014-06-19 17:45:03 -0400
commitaa1dce6da249b3eff707a6f4de0a03f3876ad514 (patch)
tree6630b16601f247624407f912b4c6242739140d4e /libnm-glib/nm-device-vlan.c
parentcdc15cb2a6312ab5e6da4618d97e003dce32c1e9 (diff)
downloadNetworkManager-aa1dce6da249b3eff707a6f4de0a03f3876ad514.tar.gz
all: remove remaining GParamSpec name/blurb strings
Remove all remaining GParamSpec name and blurb strings (and fix indentation while we're there), and add G_PARAM_STATIC_STRINGS to all paramspecs that were lacking it.
Diffstat (limited to 'libnm-glib/nm-device-vlan.c')
-rw-r--r--libnm-glib/nm-device-vlan.c21
1 files changed, 9 insertions, 12 deletions
diff --git a/libnm-glib/nm-device-vlan.c b/libnm-glib/nm-device-vlan.c
index 2a84b94659..5a230eea13 100644
--- a/libnm-glib/nm-device-vlan.c
+++ b/libnm-glib/nm-device-vlan.c
@@ -324,11 +324,10 @@ nm_device_vlan_class_init (NMDeviceVlanClass *eth_class)
**/
g_object_class_install_property
(object_class, PROP_HW_ADDRESS,
- g_param_spec_string (NM_DEVICE_VLAN_HW_ADDRESS,
- "Active MAC Address",
- "Currently set hardware MAC address",
+ g_param_spec_string (NM_DEVICE_VLAN_HW_ADDRESS, "", "",
NULL,
- G_PARAM_READABLE));
+ G_PARAM_READABLE |
+ G_PARAM_STATIC_STRINGS));
/**
* NMDeviceVlan:carrier:
@@ -337,11 +336,10 @@ nm_device_vlan_class_init (NMDeviceVlanClass *eth_class)
**/
g_object_class_install_property
(object_class, PROP_CARRIER,
- g_param_spec_boolean (NM_DEVICE_VLAN_CARRIER,
- "Carrier",
- "Carrier",
+ g_param_spec_boolean (NM_DEVICE_VLAN_CARRIER, "", "",
FALSE,
- G_PARAM_READABLE));
+ G_PARAM_READABLE |
+ G_PARAM_STATIC_STRINGS));
/**
* NMDeviceVlan:vlan-id:
@@ -350,9 +348,8 @@ nm_device_vlan_class_init (NMDeviceVlanClass *eth_class)
**/
g_object_class_install_property
(object_class, PROP_VLAN_ID,
- g_param_spec_uint (NM_DEVICE_VLAN_VLAN_ID,
- "VLAN ID",
- "VLAN ID",
+ g_param_spec_uint (NM_DEVICE_VLAN_VLAN_ID, "", "",
0, 4095, 0,
- G_PARAM_READABLE));
+ G_PARAM_READABLE |
+ G_PARAM_STATIC_STRINGS));
}