Plugins/VcsPlugins/vcsMercurial/HgMergeDialog.py

changeset 3306
0a4e5082cbc6
parent 3160
209a07d7e401
child 3337
49faa820151a
--- a/Plugins/VcsPlugins/vcsMercurial/HgMergeDialog.py	Mon Feb 24 19:27:39 2014 +0100
+++ b/Plugins/VcsPlugins/vcsMercurial/HgMergeDialog.py	Mon Feb 24 19:43:31 2014 +0100
@@ -17,12 +17,11 @@
     """
     Class implementing a dialog to enter the data for a merge operation.
     """
-    def __init__(self, force, tagsList, branchesList, bookmarksList=None,
+    def __init__(self, tagsList, branchesList, bookmarksList=None,
                  parent=None):
         """
         Constructor
         
-        @param force flag indicating a forced merge (boolean)
         @param tagsList list of tags (list of strings)
         @param branchesList list of branches (list of strings)
         @param bookmarksList list of bookmarks (list of strings)
@@ -33,7 +32,6 @@
        
         self.buttonBox.button(QDialogButtonBox.Ok).setEnabled(False)
         
-        self.forceCheckBox.setChecked(force)
         self.tagCombo.addItems(sorted(tagsList))
         self.branchCombo.addItems(["default"] + sorted(branchesList))
         if bookmarksList is not None:

eric ide

mercurial