Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py

changeset 3434
9b874ca09bb3
parent 3416
efce6439595a
child 3471
31a6d4300906
child 3484
645c12de6b0c
diff -r 7cfe7471175d -r 9b874ca09bb3 Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py
--- a/Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py	Tue Mar 25 19:29:24 2014 +0100
+++ b/Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py	Tue Mar 25 19:34:15 2014 +0100
@@ -736,21 +736,6 @@
         self.hgPreviewBundleAct.triggered.connect(self.__hgPreviewBundle)
         self.actions.append(self.hgPreviewBundleAct)
         
-        self.hgIdentifyBundleAct = E5Action(
-            self.tr('Identify changegroup'),
-            self.tr('Identify changegroup...'),
-            0, 0, self, 'mercurial_identify_bundle')
-        self.hgIdentifyBundleAct.setStatusTip(self.tr(
-            'Identify a changegroup file containing a collection of changesets'
-        ))
-        self.hgIdentifyBundleAct.setWhatsThis(self.tr(
-            """<b>Identify changegroup</b>"""
-            """<p>This identifies a changegroup file containing a"""
-            """ collection of changesets.</p>"""
-        ))
-        self.hgIdentifyBundleAct.triggered.connect(self.__hgIdentifyBundle)
-        self.actions.append(self.hgIdentifyBundleAct)
-        
         self.hgUnbundleAct = E5Action(
             self.tr('Apply changegroups'),
             self.tr('Apply changegroups...'),
@@ -1056,7 +1041,6 @@
         bundleMenu = QMenu(self.tr("Changegroup Management"), menu)
         bundleMenu.setTearOffEnabled(True)
         bundleMenu.addAction(self.hgBundleAct)
-        bundleMenu.addAction(self.hgIdentifyBundleAct)
         bundleMenu.addAction(self.hgPreviewBundleAct)
         bundleMenu.addAction(self.hgUnbundleAct)
         self.subMenus.append(bundleMenu)
@@ -1392,12 +1376,6 @@
         """
         self.vcs.hgPreviewBundle(self.project.ppath)
     
-    def __hgIdentifyBundle(self):
-        """
-        Private slot used to identify a changegroup file.
-        """
-        self.vcs.hgIdentifyBundle(self.project.ppath)
-    
     def __hgUnbundle(self):
         """
         Private slot used to apply changegroup files.

eric ide

mercurial