Ticket #7410: bug_7410.patch

File bug_7410.patch, 522 bytes (added by Atul Jha, 12 years ago)

Patch for Bug Number 7410

Line 
11365d1364
2<
31392a1392,1406
4> #if defined(__unix__) || defined(__linux__)
5> for (unsigned int i = 0; i < m_fileData.size(); i++)
6> {
7> const CLocalFileData& data = m_fileData[i];
8> if(!data.dir)
9> {
10> if (newname == data.name)
11> {
12> if (wxMessageBox(_("Target filename already exists, really continue?"), _("File exists"), wxICON_QUESTION | wxYES_NO) != wxYES)
13> return false;
14> break;
15> }
16> }
17> }
18> #endif
191395,1396c1409,1410
20< return false;
21<
22---
23> return false;
24>
251402d1415
26<