From e7d1bebccd170ccca9da1a6e43e1241cd03231a5 Mon Sep 17 00:00:00 2001 From: Nicola Fontana Date: Mon, 14 Sep 2009 11:20:14 +0200 Subject: [PATCH] [AdgToyText] s/TEXT_NORMAL/TEXT_REGULAR/ Updated the name of the default dress, previously changed for consistency. --- adg/adg-toy-text.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/adg/adg-toy-text.c b/adg/adg-toy-text.c index e5cd3dcf..778b2ff9 100644 --- a/adg/adg-toy-text.c +++ b/adg/adg-toy-text.c @@ -99,14 +99,15 @@ adg_toy_text_class_init(AdgToyTextClass *klass) param = adg_param_spec_dress("dress", P_("Dress Style"), P_("The dress style to use for rendering this text"), - ADG_DRESS_TEXT_NORMAL, + ADG_DRESS_TEXT_REGULAR, G_PARAM_READWRITE); g_object_class_install_property(gobject_class, PROP_DRESS, param); param = g_param_spec_string("label", P_("Label"), P_("The label to display"), - NULL, G_PARAM_READWRITE); + NULL, + G_PARAM_READWRITE); g_object_class_install_property(gobject_class, PROP_LABEL, param); } @@ -117,7 +118,7 @@ adg_toy_text_init(AdgToyText *toy_text) ADG_TYPE_TOY_TEXT, AdgToyTextPrivate); - data->dress = ADG_DRESS_TEXT_NORMAL; + data->dress = ADG_DRESS_TEXT_REGULAR; data->label = NULL; data->glyphs = NULL; -- 2.11.4.GIT