eric6/ViewManager/ViewManager.py

changeset 7705
90a9aefd4253
parent 7704
9251c4dc4f7a
child 7737
5371a22cf2aa
child 7746
12d5e1e6abd1
diff -r 9251c4dc4f7a -r 90a9aefd4253 eric6/ViewManager/ViewManager.py
--- a/eric6/ViewManager/ViewManager.py	Sat Sep 19 19:04:21 2020 +0200
+++ b/eric6/ViewManager/ViewManager.py	Sun Sep 20 18:32:28 2020 +0200
@@ -127,6 +127,8 @@
         editor's text
     @signal editorLineChanged(str,int) emitted to signal a change of an
         editor's current line (line is given one based)
+    @signal editorLineChangedEd(Editor,int) emitted to signal a change of an
+        editor's current line (line is given one based)
     @signal editorDoubleClickedEd(Editor, position, buttons) emitted to signal
         a mouse double click in an editor
     """
@@ -153,6 +155,7 @@
     editorLanguageChanged = pyqtSignal(Editor)
     editorTextChanged = pyqtSignal(Editor)
     editorLineChanged = pyqtSignal(str, int)
+    editorLineChangedEd = pyqtSignal(Editor, int)
     editorDoubleClickedEd = pyqtSignal(Editor, QPoint, int)
     
     def __init__(self):
@@ -3788,15 +3791,17 @@
         self.viewActions.append(self.astViewerAct)
         
         self.disViewerAct = E5Action(
-            QCoreApplication.translate('ViewManager', 'Python DIS Viewer'),
+            QCoreApplication.translate(
+                'ViewManager', 'Python Disassembly Viewer'),
             UI.PixmapCache.getIcon("disassembly"),
-            QCoreApplication.translate('ViewManager', 'Python DIS Viewer'),
+            QCoreApplication.translate(
+                'ViewManager', 'Python Disassembly Viewer'),
             0, 0, self, 'vm_python_dis_viewer', True)
         self.disViewerAct.setStatusTip(QCoreApplication.translate(
             'ViewManager', 'Show the Disassembly for the current Python file'))
         self.disViewerAct.setWhatsThis(QCoreApplication.translate(
             'ViewManager',
-            """<b>Python DIS Viewer</b>"""
+            """<b>Python Disassembly Viewer</b>"""
             """<p>This opens the a tree view of the Disassembly of the"""
             """ current Python source file.</p>"""
         ))

eric ide

mercurial