comparison src/gtkrequest.c @ 10116:9f358a718f38

[gaim-migrate @ 11153] I went through every commit email on oldstatus since we branched, and merged relevant things to HEAD that had only been applied on oldstatus. committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Mon, 18 Oct 2004 19:02:33 +0000
parents f4ff7d2b9b2c
children ffab99688e5f
comparison
equal deleted inserted replaced
10115:4fd312ceaa29 10116:9f358a718f38
1394 #endif /* FILECHOOSER */ 1394 #endif /* FILECHOOSER */
1395 1395
1396 if ((data->u.file.savedialog == TRUE) && 1396 if ((data->u.file.savedialog == TRUE) &&
1397 (g_file_test(data->u.file.name, G_FILE_TEST_EXISTS))) { 1397 (g_file_test(data->u.file.name, G_FILE_TEST_EXISTS))) {
1398 gaim_request_yes_no(data, NULL, _("That file already exists"), 1398 gaim_request_yes_no(data, NULL, _("That file already exists"),
1399 _("Would you like to overwrite it?"), 1, data, 1399 _("Would you like to overwrite it?"), 0, data,
1400 G_CALLBACK(file_yes_no_cb), 1400 G_CALLBACK(file_yes_no_cb),
1401 G_CALLBACK(file_yes_no_cb)); 1401 G_CALLBACK(file_yes_no_cb));
1402 } else 1402 } else
1403 file_yes_no_cb(data, 1); 1403 file_yes_no_cb(data, 1);
1404 } 1404 }