Debugger/EditWatchpointDialog.py

changeset 482
4650a72c307a
parent 13
1af94a91f439
child 791
9ec2ac20e54e
diff -r ad71812ba395 -r 4650a72c307a Debugger/EditWatchpointDialog.py
--- a/Debugger/EditWatchpointDialog.py	Tue Aug 10 13:15:03 2010 +0200
+++ b/Debugger/EditWatchpointDialog.py	Tue Aug 10 14:17:54 2010 +0200
@@ -36,10 +36,8 @@
         self.buttonBox.button(QDialogButtonBox.Ok).setEnabled(False)
         
         # connect our widgets
-        self.connect(self.conditionEdit, SIGNAL("textChanged(const QString &)"),
-            self.__textChanged)
-        self.connect(self.specialEdit, SIGNAL("textChanged(const QString &)"),
-            self.__textChanged)
+        self.conditionEdit.textChanged.connect(self.__textChanged)
+        self.specialEdit.textChanged.connect(self.__textChanged)
         
         cond, temp, enabled, count, special = properties
         

eric ide

mercurial