comparison libpurple/theme-loader.c @ 29106:6e9917e067e6

propagate from branch 'im.pidgin.pidgin' (head f881ba77d0fe70224a938185a5a3675b39520873) to branch 'im.pidgin.pidgin.next.minor' (head 91d04fec37b328ffc2e552ea14a5a520d27161f2)
author John Bailey <rekkanoryo@rekkanoryo.org>
date Wed, 16 Sep 2009 15:41:33 +0000
parents a444fe876e52
children ac1ad1fa5ecf
comparison
equal deleted inserted replaced
29104:df24cbb0d6e2 29106:6e9917e067e6
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