GTlsPassword: Make declared defaults match

String properties typically start out with a value of NULL.
No reason to deviate from that convention here.
This commit is contained in:
Matthias Clasen 2013-12-23 15:01:20 -05:00
parent 3a37e403e6
commit 290b46cd24

View File

@ -207,7 +207,7 @@ g_tls_password_class_init (GTlsPasswordClass *klass)
g_param_spec_string ("description", g_param_spec_string ("description",
P_("Description"), P_("Description"),
P_("Description of what the password is for"), P_("Description of what the password is for"),
"", NULL,
G_PARAM_READWRITE | G_PARAM_READWRITE |
G_PARAM_STATIC_STRINGS)); G_PARAM_STATIC_STRINGS));
@ -215,7 +215,7 @@ g_tls_password_class_init (GTlsPasswordClass *klass)
g_param_spec_string ("warning", g_param_spec_string ("warning",
P_("Warning"), P_("Warning"),
P_("Warning about the password"), P_("Warning about the password"),
"", NULL,
G_PARAM_READWRITE | G_PARAM_READWRITE |
G_PARAM_STATIC_STRINGS)); G_PARAM_STATIC_STRINGS));