| 134 /* Setup properties */ |
134 /* Setup properties */ |
| 135 obj_class->get_property = pidgin_plugin_info_get_property; |
135 obj_class->get_property = pidgin_plugin_info_get_property; |
| 136 obj_class->set_property = pidgin_plugin_info_set_property; |
136 obj_class->set_property = pidgin_plugin_info_set_property; |
| 137 |
137 |
| 138 g_object_class_install_property(obj_class, PROP_PIDGIN_CONFIG_FRAME_CB, |
138 g_object_class_install_property(obj_class, PROP_PIDGIN_CONFIG_FRAME_CB, |
| 139 g_param_spec_pointer("pidgin-config-frame-cb", |
139 g_param_spec_pointer("gtk-config-frame-cb", |
| 140 "Pidgin configuration frame callback", |
140 "GTK configuration frame callback", |
| 141 "Callback that returns a GTK configuration frame", |
141 "Callback that returns a GTK configuration frame", |
| 142 G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY)); |
142 G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY)); |
| 143 } |
143 } |
| 144 |
144 |
| 145 GType |
145 GType |