eric6/Debugger/EditWatchpointDialog.py

changeset 8143
2c730d5fd177
parent 7923
91e843545d9a
child 8218
7c09585bd960
--- a/eric6/Debugger/EditWatchpointDialog.py	Mon Mar 01 17:48:43 2021 +0100
+++ b/eric6/Debugger/EditWatchpointDialog.py	Tue Mar 02 17:17:09 2021 +0100
@@ -33,7 +33,8 @@
             self.setObjectName(name)
         self.setModal(modal)
         
-        self.buttonBox.button(QDialogButtonBox.Ok).setEnabled(False)
+        self.buttonBox.button(
+            QDialogButtonBox.StandardButton.Ok).setEnabled(False)
         
         # connect our widgets
         self.conditionEdit.textChanged.connect(self.__textChanged)
@@ -77,15 +78,16 @@
         """
         if self.conditionButton.isChecked():
             self.buttonBox.button(
-                QDialogButtonBox.Ok
+                QDialogButtonBox.StandardButton.Ok
             ).setEnabled(self.conditionEdit.text() != "")
         elif self.specialButton.isChecked():
             self.buttonBox.button(
-                QDialogButtonBox.Ok
+                QDialogButtonBox.StandardButton.Ok
             ).setEnabled(self.specialEdit.text() != "")
         else:
             # should not happen
-            self.buttonBox.button(QDialogButtonBox.Ok).setEnabled(False)
+            self.buttonBox.button(
+                QDialogButtonBox.StandardButton.Ok).setEnabled(False)
         
     def getData(self):
         """

eric ide

mercurial