src/eric7/Project/ProjectBrowser.py

branch
eric7
changeset 10677
6ee2e475490c
parent 10621
f5631f40c4d9
child 10683
779cda568acb
--- a/src/eric7/Project/ProjectBrowser.py	Mon Apr 08 17:02:11 2024 +0200
+++ b/src/eric7/Project/ProjectBrowser.py	Tue Apr 09 14:27:03 2024 +0200
@@ -61,6 +61,8 @@
         at a line giving an explicit file type (str, int, str)
     @signal sourceFile(filename, linenos) emitted to open a Python file giving
         a list of lines(str, list)
+    @signal sourceFile(filename, lineno, col_offset) emitted to open a Python file at a
+        line and column (str, int, int)
     @signal svgFile(filename) emitted to open a SVG file (str)
     @signal testFile(filename) emitted to open a Python file for a
         unit test (str)
@@ -85,7 +87,9 @@
     pixmapEditFile = pyqtSignal(str)
     pixmapFile = pyqtSignal(str)
     preferencesChanged = pyqtSignal()
-    sourceFile = pyqtSignal((str,), (str, int), (str, list), (str, int, str))
+    sourceFile = pyqtSignal(
+        (str,), (str, int), (str, int, int), (str, list), (str, int, str)
+    )
     svgFile = pyqtSignal(str)
     testFile = pyqtSignal(str)
     trpreview = pyqtSignal((list,), (list, bool))

eric ide

mercurial