comparison libpurple/roomlist.h @ 32176:5aa171c8776b

Fix a bunch of tiny problems generating our doxygen documentation
author Mark Doliner <mark@kingant.net>
date Sun, 18 Sep 2011 20:46:06 +0000
parents ff051a32e1e8
children 02a2e8183b1d
comparison
equal deleted inserted replaced
32175:a617a949e545 32176:5aa171c8776b
222 GList *purple_roomlist_get_fields(PurpleRoomlist *roomlist); 222 GList *purple_roomlist_get_fields(PurpleRoomlist *roomlist);
223 223
224 /** 224 /**
225 * Get the protocol data associated with this room list. 225 * Get the protocol data associated with this room list.
226 * 226 *
227 * @param roomlist The roomlist, which must not be @c NULL. 227 * @param list The roomlist, which must not be @c NULL.
228 * 228 *
229 * @return The protocol data associated with this room list. This is a 229 * @return The protocol data associated with this room list. This is a
230 * convenience field provided to the protocol plugin--it is not 230 * convenience field provided to the protocol plugin--it is not
231 * used the libpurple core. 231 * used the libpurple core.
232 */ 232 */
241 void purple_roomlist_set_proto_data(PurpleRoomlist *list, gpointer proto_data); 241 void purple_roomlist_set_proto_data(PurpleRoomlist *list, gpointer proto_data);
242 242
243 /** 243 /**
244 * Get the UI data associated with this room list. 244 * Get the UI data associated with this room list.
245 * 245 *
246 * @param roomlist The roomlist, which must not be @c NULL. 246 * @param list The roomlist, which must not be @c NULL.
247 * 247 *
248 * @return The UI data associated with this room list. This is a 248 * @return The UI data associated with this room list. This is a
249 * convenience field provided to the UIs--it is not 249 * convenience field provided to the UIs--it is not
250 * used by the libpurple core. 250 * used by the libpurple core.
251 */ 251 */
253 253
254 /** 254 /**
255 * Set the UI data associated with this room list. 255 * Set the UI data associated with this room list.
256 * 256 *
257 * @param list The roomlist, which must not be @c NULL. 257 * @param list The roomlist, which must not be @c NULL.
258 * @param UI_data A pointer to associate with this room list. 258 * @param ui_data A pointer to associate with this room list.
259 */ 259 */
260 void purple_roomlist_set_ui_data(PurpleRoomlist *list, gpointer ui_data); 260 void purple_roomlist_set_ui_data(PurpleRoomlist *list, gpointer ui_data);
261 261
262 /*@}*/ 262 /*@}*/
263 263