Debugger/EditWatchpointDialog.py

branch
Py2 comp.
changeset 2525
8b507a9a2d40
parent 2302
f29e9405c851
child 2677
3d4277929fb3
equal deleted inserted replaced
2523:139f182b72f6 2525:8b507a9a2d40
4 # 4 #
5 5
6 """ 6 """
7 Module implementing a dialog to edit watch expression properties. 7 Module implementing a dialog to edit watch expression properties.
8 """ 8 """
9
10 from __future__ import unicode_literals # __IGNORE_WARNING__
9 11
10 from PyQt4.QtGui import QDialog, QDialogButtonBox 12 from PyQt4.QtGui import QDialog, QDialogButtonBox
11 13
12 from .Ui_EditWatchpointDialog import Ui_EditWatchpointDialog 14 from .Ui_EditWatchpointDialog import Ui_EditWatchpointDialog
13 15
24 (expression, temporary flag, enabled flag, ignore count, special condition) 26 (expression, temporary flag, enabled flag, ignore count, special condition)
25 @param parent the parent of this dialog 27 @param parent the parent of this dialog
26 @param name the widget name of this dialog 28 @param name the widget name of this dialog
27 @param modal flag indicating a modal dialog 29 @param modal flag indicating a modal dialog
28 """ 30 """
29 super().__init__(parent) 31 super(EditWatchpointDialog, self).__init__(parent)
30 self.setupUi(self) 32 self.setupUi(self)
31 if name: 33 if name:
32 self.setObjectName(name) 34 self.setObjectName(name)
33 self.setModal(modal) 35 self.setModal(modal)
34 36

eric ide

mercurial