summaryrefslogtreecommitdiff
path: root/libnm-util/nm-setting-cdma.c
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2014-06-05 16:23:32 -0400
committerDan Winship <danw@gnome.org>2014-06-19 17:45:03 -0400
commitcdc15cb2a6312ab5e6da4618d97e003dce32c1e9 (patch)
treea92ab1ac6917ceedccb7bd8a3405afe4cffde377 /libnm-util/nm-setting-cdma.c
parent8252ebd941d17fff932023d29aac0bfe436d4bf9 (diff)
downloadNetworkManager-cdc15cb2a6312ab5e6da4618d97e003dce32c1e9.tar.gz
libnm-util: remove NMSetting* GParamSpec docs
Remove all the GParamSpec docs, since everything now uses the gtk-doc docs instead, so there's no point in having two copies of each (which are often out of sync anyway). Since we're touching so many lines anyway, also fix up the indentation of the remaining property-installing lines, and add G_PARAM_STATIC_STRINGS to each paramspec (so the nick strings don't get strduped). Also, be consistent about starting a new line between "g_object_class_install_property" and its opening parenthesis.
Diffstat (limited to 'libnm-util/nm-setting-cdma.c')
-rw-r--r--libnm-util/nm-setting-cdma.c44
1 files changed, 17 insertions, 27 deletions
diff --git a/libnm-util/nm-setting-cdma.c b/libnm-util/nm-setting-cdma.c
index 7acfe85201..ab62d1fc96 100644
--- a/libnm-util/nm-setting-cdma.c
+++ b/libnm-util/nm-setting-cdma.c
@@ -308,14 +308,10 @@ nm_setting_cdma_class_init (NMSettingCdmaClass *setting_class)
**/
g_object_class_install_property
(object_class, PROP_NUMBER,
- g_param_spec_string (NM_SETTING_CDMA_NUMBER,
- "Number",
- "Number to dial when establishing a PPP data session "
- "with the CDMA-based mobile broadband network. If not "
- "specified, the default number (#777) is used when "
- "required.",
- NULL,
- G_PARAM_READWRITE));
+ g_param_spec_string (NM_SETTING_CDMA_NUMBER, "", "",
+ NULL,
+ G_PARAM_READWRITE |
+ G_PARAM_STATIC_STRINGS));
/**
* NMSettingCdma:username:
@@ -326,13 +322,10 @@ nm_setting_cdma_class_init (NMSettingCdmaClass *setting_class)
**/
g_object_class_install_property
(object_class, PROP_USERNAME,
- g_param_spec_string (NM_SETTING_CDMA_USERNAME,
- "Username",
- "Username used to authenticate with the network, if "
- "required. Note that many providers do not require "
- "a username or accept any username.",
- NULL,
- G_PARAM_READWRITE));
+ g_param_spec_string (NM_SETTING_CDMA_USERNAME, "", "",
+ NULL,
+ G_PARAM_READWRITE |
+ G_PARAM_STATIC_STRINGS));
/**
* NMSettingCdma:password:
@@ -343,25 +336,22 @@ nm_setting_cdma_class_init (NMSettingCdmaClass *setting_class)
**/
g_object_class_install_property
(object_class, PROP_PASSWORD,
- g_param_spec_string (NM_SETTING_CDMA_PASSWORD,
- "Password",
- "Password used to authenticate with the network, if "
- "required. Note that many providers do not require "
- "a password or accept any password.",
- NULL,
- G_PARAM_READWRITE | NM_SETTING_PARAM_SECRET));
+ g_param_spec_string (NM_SETTING_CDMA_PASSWORD, "", "",
+ NULL,
+ G_PARAM_READWRITE | NM_SETTING_PARAM_SECRET |
+ G_PARAM_STATIC_STRINGS));
/**
* NMSettingCdma:password-flags:
*
* Flags indicating how to handle the #NMSettingCdma:password property.
**/
- g_object_class_install_property (object_class, PROP_PASSWORD_FLAGS,
- g_param_spec_uint (NM_SETTING_CDMA_PASSWORD_FLAGS,
- "Password Flags",
- "Flags indicating how to handle the CDMA password.",
+ g_object_class_install_property
+ (object_class, PROP_PASSWORD_FLAGS,
+ g_param_spec_uint (NM_SETTING_CDMA_PASSWORD_FLAGS, "", "",
NM_SETTING_SECRET_FLAG_NONE,
NM_SETTING_SECRET_FLAGS_ALL,
NM_SETTING_SECRET_FLAG_NONE,
- G_PARAM_READWRITE));
+ G_PARAM_READWRITE |
+ G_PARAM_STATIC_STRINGS));
}