comparison libpurple/theme-loader.c @ 28520:a444fe876e52

Fix some typos.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Mon, 31 Aug 2009 23:17:57 +0000
parents 0c7b74fc558e
children ac1ad1fa5ecf
comparison
equal deleted inserted replaced
28517:40d8427d1813 28520:a444fe876e52
116 obj_class->set_property = purple_theme_loader_set_property; 116 obj_class->set_property = purple_theme_loader_set_property;
117 obj_class->finalize = purple_theme_loader_finalize; 117 obj_class->finalize = purple_theme_loader_finalize;
118 118
119 /* TYPE STRING (read only) */ 119 /* TYPE STRING (read only) */
120 pspec = g_param_spec_string("type", "Type", 120 pspec = g_param_spec_string("type", "Type",
121 "The string represtenting the type of the theme", 121 "The string representing the type of the theme",
122 NULL, 122 NULL,
123 G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY); 123 G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY);
124 g_object_class_install_property(obj_class, PROP_TYPE, pspec); 124 g_object_class_install_property(obj_class, PROP_TYPE, pspec);
125 } 125 }
126 126