pidgin/pidgininfopane.c

changeset 43072
a59a119b74f5
parent 43041
ea212a081e9c
equal deleted inserted replaced
43071:071588186662 43072:a59a119b74f5
160 * The title to display. 160 * The title to display.
161 * 161 *
162 * Since: 3.0 162 * Since: 3.0
163 */ 163 */
164 properties[PROP_TITLE] = g_param_spec_string( 164 properties[PROP_TITLE] = g_param_spec_string(
165 "title", "title", 165 "title", NULL, NULL,
166 "The title for the info pane.",
167 NULL, 166 NULL,
168 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); 167 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
169 168
170 /** 169 /**
171 * PidginInfoPane:subtitle: 170 * PidginInfoPane:subtitle:
173 * The sub title to display. 172 * The sub title to display.
174 * 173 *
175 * Since: 3.0 174 * Since: 3.0
176 */ 175 */
177 properties[PROP_SUBTITLE] = g_param_spec_string( 176 properties[PROP_SUBTITLE] = g_param_spec_string(
178 "subtitle", "subtitle", 177 "subtitle", NULL, NULL,
179 "The subtitle for the info pane.",
180 NULL, 178 NULL,
181 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); 179 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
182 180
183 /** 181 /**
184 * PidginInfoPane:child: 182 * PidginInfoPane:child:
186 * The child widget to display at the end of the info pane. 184 * The child widget to display at the end of the info pane.
187 * 185 *
188 * Since: 3.0 186 * Since: 3.0
189 */ 187 */
190 properties[PROP_CHILD] = g_param_spec_object( 188 properties[PROP_CHILD] = g_param_spec_object(
191 "child", "child", 189 "child", NULL, NULL,
192 "A child widget to display at the end of the info pane.",
193 GTK_TYPE_WIDGET, 190 GTK_TYPE_WIDGET,
194 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); 191 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
195 192
196 g_object_class_install_properties(obj_class, N_PROPERTIES, properties); 193 g_object_class_install_properties(obj_class, N_PROPERTIES, properties);
197 194

mercurial