Debugger/EditBreakpointDialog.py

branch
Py2 comp.
changeset 2525
8b507a9a2d40
parent 2302
f29e9405c851
child 3057
10516539f238
equal deleted inserted replaced
2523:139f182b72f6 2525:8b507a9a2d40
4 # 4 #
5 5
6 """ 6 """
7 Module implementing a dialog to edit breakpoint properties. 7 Module implementing a dialog to edit breakpoint properties.
8 """ 8 """
9
10 from __future__ import unicode_literals # __IGNORE_WARNING__
9 11
10 import os.path 12 import os.path
11 13
12 from PyQt4.QtCore import pyqtSlot 14 from PyQt4.QtCore import pyqtSlot
13 from PyQt4.QtGui import QDialog, QDialogButtonBox 15 from PyQt4.QtGui import QDialog, QDialogButtonBox
36 @param condHistory the list of conditionals history (list of strings) 38 @param condHistory the list of conditionals history (list of strings)
37 @param parent the parent of this dialog 39 @param parent the parent of this dialog
38 @param name the widget name of this dialog 40 @param name the widget name of this dialog
39 @param modal flag indicating a modal dialog 41 @param modal flag indicating a modal dialog
40 """ 42 """
41 super().__init__(parent) 43 super(EditBreakpointDialog, self).__init__(parent)
42 self.setupUi(self) 44 self.setupUi(self)
43 if name: 45 if name:
44 self.setObjectName(name) 46 self.setObjectName(name)
45 self.setModal(modal) 47 self.setModal(modal)
46 48

eric ide

mercurial