| 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 |