eric7/Debugger/ExceptionLogger.py

branch
eric7
changeset 8356
68ec9c3d4de5
parent 8318
962bce857696
child 8358
144a6b854f70
equal deleted inserted replaced
8355:8a7677a63c8d 8356:68ec9c3d4de5
10 import contextlib 10 import contextlib
11 11
12 from PyQt6.QtCore import pyqtSignal, Qt 12 from PyQt6.QtCore import pyqtSignal, Qt
13 from PyQt6.QtWidgets import QTreeWidget, QTreeWidgetItem, QMenu 13 from PyQt6.QtWidgets import QTreeWidget, QTreeWidgetItem, QMenu
14 14
15 from E5Gui.E5Application import e5App 15 from E5Gui.EricApplication import ericApp
16 16
17 17
18 class ExceptionLogger(QTreeWidget): 18 class ExceptionLogger(QTreeWidget):
19 """ 19 """
20 Class implementing the Exception Logger widget. 20 Class implementing the Exception Logger widget.
148 148
149 def __configure(self): 149 def __configure(self):
150 """ 150 """
151 Private method to open the configuration dialog. 151 Private method to open the configuration dialog.
152 """ 152 """
153 e5App().getObject("UserInterface").showPreferences( 153 ericApp().getObject("UserInterface").showPreferences(
154 "debuggerGeneralPage") 154 "debuggerGeneralPage")

eric ide

mercurial