From 290b46cd24d35d6bce7b86e05ce5948b42c45233 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 23 Dec 2013 15:01:20 -0500 Subject: [PATCH] GTlsPassword: Make declared defaults match String properties typically start out with a value of NULL. No reason to deviate from that convention here. --- gio/gtlspassword.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gio/gtlspassword.c b/gio/gtlspassword.c index 2ddeb5d..38280d9 100644 --- a/gio/gtlspassword.c +++ b/gio/gtlspassword.c @@ -207,7 +207,7 @@ g_tls_password_class_init (GTlsPasswordClass *klass) g_param_spec_string ("description", P_("Description"), P_("Description of what the password is for"), - "", + NULL, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); @@ -215,7 +215,7 @@ g_tls_password_class_init (GTlsPasswordClass *klass) g_param_spec_string ("warning", P_("Warning"), P_("Warning about the password"), - "", + NULL, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); -- 2.7.4