src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnMergeDialog.py

branch
eric7
changeset 10069
435cc5875135
parent 9653
e67609152c5e
child 10438
4cd7e5a8b3cf
--- a/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnMergeDialog.py	Thu May 25 11:12:05 2023 +0200
+++ b/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnMergeDialog.py	Thu May 25 19:51:47 2023 +0200
@@ -9,6 +9,7 @@
 
 import re
 
+from PyQt6.QtCore import pyqtSlot
 from PyQt6.QtWidgets import QDialog, QDialogButtonBox
 
 from .Ui_SvnMergeDialog import Ui_SvnMergeDialog
@@ -71,6 +72,7 @@
             )
         )
 
+    @pyqtSlot(str)
     def on_tag1Combo_editTextChanged(self, text):
         """
         Private slot to handle the tag1Combo editTextChanged signal.
@@ -79,6 +81,7 @@
         """
         self.__enableOkButton()
 
+    @pyqtSlot(str)
     def on_tag2Combo_editTextChanged(self, text):
         """
         Private slot to handle the tag2Combo editTextChanged signal.

eric ide

mercurial