| 1345 #define gaim_request_accept_cancel(handle, title, primary, secondary, \ |
1345 #define gaim_request_accept_cancel(handle, title, primary, secondary, \ |
| 1346 default_action, user_data, accept_cb, \ |
1346 default_action, user_data, accept_cb, \ |
| 1347 cancel_cb) \ |
1347 cancel_cb) \ |
| 1348 gaim_request_action((handle), (title), (primary), (secondary), \ |
1348 gaim_request_action((handle), (title), (primary), (secondary), \ |
| 1349 (default_action), (user_data), 2, \ |
1349 (default_action), (user_data), 2, \ |
| 1350 _("Accept"), (accept_cb), _("Cancel"), (cancel_cb)) |
1350 _("_Accept"), (accept_cb), _("Cancel"), (cancel_cb)) |
| 1351 |
1351 |
| 1352 /** |
1352 /** |
| 1353 * Displays a file selector request dialog. Returns the selected filename into |
1353 * Displays a file selector request dialog. Returns the selected filename into |
| 1354 * the callback. Can be used for either opening a file or saving a file. |
1354 * the callback. Can be used for either opening a file or saving a file. |
| 1355 * |
1355 * |