comparison mainwindow.cpp @ 328:ea62eb083ed4 filelist_right_button_menu

Merge fixes: primarily, handle failed merges better
author Chris Cannam
date Fri, 11 Mar 2011 18:08:22 +0000
parents f166f70c64f9
children ef977e7482cd
comparison
equal deleted inserted replaced
327:f166f70c64f9 328:ea62eb083ed4
1843 case ACT_PUSH: 1843 case ACT_PUSH:
1844 if (output.contains("creates new remote heads")) { 1844 if (output.contains("creates new remote heads")) {
1845 reportNewRemoteHeads(output); 1845 reportNewRemoteHeads(output);
1846 return; 1846 return;
1847 } 1847 }
1848 case ACT_MERGE:
1849 case ACT_RETRY_MERGE:
1850 MoreInformationDialog::information
1851 (this, tr("Merge"), tr("Merge failed"),
1852 tr("Some files were not merged successfully.<p>You can Merge again to repeat the interactive merge; use Revert to abandon the merge entirely; or edit the files that are in conflict in an editor and, when you are happy with them, choose Mark Resolved in each file's right-button menu."),
1853 output);
1854 return;
1848 case ACT_STAT: 1855 case ACT_STAT:
1849 break; // go on and report 1856 break; // go on and report
1850 default: 1857 default:
1851 break; 1858 break;
1852 } 1859 }