eric6/Plugins/VcsPlugins/vcsSubversion/SvnCopyDialog.py

branch
maintenance
changeset 8176
31965986ecd1
parent 8143
2c730d5fd177
child 8218
7c09585bd960
--- a/eric6/Plugins/VcsPlugins/vcsSubversion/SvnCopyDialog.py	Sat Mar 06 10:00:52 2021 +0100
+++ b/eric6/Plugins/VcsPlugins/vcsSubversion/SvnCopyDialog.py	Sun Mar 28 15:00:11 2021 +0200
@@ -48,7 +48,8 @@
         
         self.sourceEdit.setText(source)
         
-        self.buttonBox.button(QDialogButtonBox.Ok).setEnabled(False)
+        self.buttonBox.button(
+            QDialogButtonBox.StandardButton.Ok).setEnabled(False)
         
         msh = self.minimumSizeHint()
         self.resize(max(self.width(), msh.width()), msh.height())
@@ -73,5 +74,5 @@
         
         @param txt contents of the target edit (string)
         """
-        self.buttonBox.button(QDialogButtonBox.Ok).setEnabled(
+        self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setEnabled(
             os.path.isabs(txt) or os.path.dirname(txt) == "")

eric ide

mercurial