summaryrefslogtreecommitdiff
path: root/src/nm-dhcp6-config.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 /src/nm-dhcp6-config.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 'src/nm-dhcp6-config.c')
-rw-r--r--src/nm-dhcp6-config.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/nm-dhcp6-config.c b/src/nm-dhcp6-config.c
index c50b8fdde4..2eb4ab1930 100644
--- a/src/nm-dhcp6-config.c
+++ b/src/nm-dhcp6-config.c
@@ -179,11 +179,10 @@ nm_dhcp6_config_class_init (NMDHCP6ConfigClass *config_class)
/* properties */
g_object_class_install_property
(object_class, PROP_OPTIONS,
- g_param_spec_boxed (NM_DHCP6_CONFIG_OPTIONS,
- "Options",
- "DHCP configuration options returned by the server",
+ g_param_spec_boxed (NM_DHCP6_CONFIG_OPTIONS, "", "",
DBUS_TYPE_G_MAP_OF_VARIANT,
- G_PARAM_READABLE));
+ G_PARAM_READABLE |
+ G_PARAM_STATIC_STRINGS));
nm_dbus_manager_register_exported_type (nm_dbus_manager_get (),
G_TYPE_FROM_CLASS (config_class),