comparison libpurple/request.h @ 31085:44f53d3fc54f

Remove trailing whitespace
author Richard Laager <rlaager@wiktel.com>
date Tue, 04 Jan 2011 06:42:45 +0000
parents e72f6383095b
children a88631af0f5e
comparison
equal deleted inserted replaced
31084:8c6a1fa21f43 31085:44f53d3fc54f
239 239
240 /** @see purple_request_action_with_icon_varg(). */ 240 /** @see purple_request_action_with_icon_varg(). */
241 void *(*request_action_with_icon)(const char *title, const char *primary, 241 void *(*request_action_with_icon)(const char *title, const char *primary,
242 const char *secondary, int default_action, 242 const char *secondary, int default_action,
243 PurpleAccount *account, const char *who, 243 PurpleAccount *account, const char *who,
244 PurpleConversation *conv, 244 PurpleConversation *conv,
245 gconstpointer icon_data, gsize icon_size, 245 gconstpointer icon_data, gsize icon_size,
246 void *user_data, 246 void *user_data,
247 size_t action_count, va_list actions); 247 size_t action_count, va_list actions);
248 248
249 void (*_purple_reserved1)(void); 249 void (*_purple_reserved1)(void);
1399 const char *primary, const char *secondary, int default_action, 1399 const char *primary, const char *secondary, int default_action,
1400 PurpleAccount *account, const char *who, PurpleConversation *conv, 1400 PurpleAccount *account, const char *who, PurpleConversation *conv,
1401 void *user_data, size_t action_count, va_list actions); 1401 void *user_data, size_t action_count, va_list actions);
1402 1402
1403 /** 1403 /**
1404 * Version of purple_request_action() supplying an image for the UI to 1404 * Version of purple_request_action() supplying an image for the UI to
1405 * optionally display as an icon in the dialog; see its documentation 1405 * optionally display as an icon in the dialog; see its documentation
1406 * @since 2.7.0 1406 * @since 2.7.0
1407 */ 1407 */
1408 void *purple_request_action_with_icon(void *handle, const char *title, 1408 void *purple_request_action_with_icon(void *handle, const char *title,
1409 const char *primary, const char *secondary, int default_action, 1409 const char *primary, const char *secondary, int default_action,
1410 PurpleAccount *account, const char *who, PurpleConversation *conv, 1410 PurpleAccount *account, const char *who, PurpleConversation *conv,
1411 gconstpointer icon_data, gsize icon_size, void *user_data, 1411 gconstpointer icon_data, gsize icon_size, void *user_data,
1412 size_t action_count, ...); 1412 size_t action_count, ...);
1413 1413
1414 /** 1414 /**
1415 * <tt>va_list</tt> version of purple_request_action_with_icon(); 1415 * <tt>va_list</tt> version of purple_request_action_with_icon();
1416 * see its documentation. 1416 * see its documentation.
1417 * @since 2.7.0 1417 * @since 2.7.0
1418 */ 1418 */
1419 void *purple_request_action_with_icon_varg(void *handle, const char *title, 1419 void *purple_request_action_with_icon_varg(void *handle, const char *title,
1420 const char *primary, const char *secondary, int default_action, 1420 const char *primary, const char *secondary, int default_action,
1506 purple_request_action((handle), (title), (primary), (secondary), \ 1506 purple_request_action((handle), (title), (primary), (secondary), \
1507 (default_action), account, who, conv, (user_data), 2, \ 1507 (default_action), account, who, conv, (user_data), 2, \
1508 _("_Accept"), (accept_cb), _("_Cancel"), (cancel_cb)) 1508 _("_Accept"), (accept_cb), _("_Cancel"), (cancel_cb))
1509 1509
1510 /** 1510 /**
1511 * A wrapper for purple_request_action_with_icon() that uses Accept and Cancel 1511 * A wrapper for purple_request_action_with_icon() that uses Accept and Cancel
1512 * buttons. 1512 * buttons.
1513 */ 1513 */
1514 #define purple_request_accept_cancel_with_icon(handle, title, primary, secondary, \ 1514 #define purple_request_accept_cancel_with_icon(handle, title, primary, secondary, \
1515 default_action, account, who, conv, \ 1515 default_action, account, who, conv, \
1516 icon_data, icon_size, \ 1516 icon_data, icon_size, \