| 278 cb_data = g_new(gpointer, 3); |
278 cb_data = g_new(gpointer, 3); |
| 279 cb_data[0] = plug; |
279 cb_data[0] = plug; |
| 280 cb_data[1] = model; |
280 cb_data[1] = model; |
| 281 cb_data[2] = iter; |
281 cb_data[2] = iter; |
| 282 |
282 |
| 283 purple_request_action_with_hint(plugin_dialog, NULL, |
283 purple_request_action(plugin_dialog, NULL, |
| 284 _("Multiple plugins will be unloaded."), |
284 _("Multiple plugins will be unloaded."), |
| 285 tmp->str, 0, |
285 tmp->str, 0, |
| 286 NULL, NULL, NULL, |
286 NULL, NULL, NULL, |
| 287 "plugins", cb_data, 2, |
287 cb_data, 2, |
| 288 _("Unload Plugins"), G_CALLBACK(plugin_unload_confirm_cb), |
288 _("Unload Plugins"), G_CALLBACK(plugin_unload_confirm_cb), |
| 289 _("Cancel"), g_free); |
289 _("Cancel"), g_free); |
| 290 g_string_free(tmp, TRUE); |
290 g_string_free(tmp, TRUE); |
| 291 } |
291 } |
| 292 else |
292 else |