summaryrefslogtreecommitdiff
path: root/libnm-util/nm-setting-team.c
diff options
context:
space:
mode:
Diffstat (limited to 'libnm-util/nm-setting-team.c')
-rw-r--r--libnm-util/nm-setting-team.c27
1 files changed, 10 insertions, 17 deletions
diff --git a/libnm-util/nm-setting-team.c b/libnm-util/nm-setting-team.c
index 80885b22da..4cfec4c9e3 100644
--- a/libnm-util/nm-setting-team.c
+++ b/libnm-util/nm-setting-team.c
@@ -242,30 +242,23 @@ nm_setting_team_class_init (NMSettingTeamClass *setting_class)
**/
g_object_class_install_property
(object_class, PROP_INTERFACE_NAME,
- g_param_spec_string (NM_SETTING_TEAM_INTERFACE_NAME,
- "InterfaceName",
- "The name of the virtual in-kernel team network interface",
+ g_param_spec_string (NM_SETTING_TEAM_INTERFACE_NAME, "", "",
NULL,
- G_PARAM_READWRITE | NM_SETTING_PARAM_INFERRABLE));
+ G_PARAM_READWRITE | NM_SETTING_PARAM_INFERRABLE |
+ G_PARAM_STATIC_STRINGS));
/**
* NMSettingTeam:config:
*
- * JSON configuration for the team network interface.
- * The property should contain raw JSON configuration data
- * suitable for teamd, because the value is passed directly to
- * teamd. If not specified, the default configuration is used.
- * See man teamd.conf for the format details.
+ * The JSON configuration for the team network interface. The property
+ * should contain raw JSON configuration data suitable for teamd, because
+ * the value is passed directly to teamd. If not specified, the default
+ * configuration is used. See man teamd.conf for the format details.
**/
g_object_class_install_property
(object_class, PROP_CONFIG,
- g_param_spec_string (NM_SETTING_TEAM_CONFIG,
- "Config",
- "JSON configuration for the team network interface. "
- "The property should contain raw JSON configuration data "
- "suitable for teamd, because the value is passed directly to "
- "teamd. If not specified, the default configuration is used. "
- "See man teamd.conf for the format details.",
+ g_param_spec_string (NM_SETTING_TEAM_CONFIG, "", "",
NULL,
- G_PARAM_READWRITE | NM_SETTING_PARAM_INFERRABLE));
+ G_PARAM_READWRITE | NM_SETTING_PARAM_INFERRABLE |
+ G_PARAM_STATIC_STRINGS));
}