Fixed incorrect signal name in setup dialog (bug #653626).
This commit is contained in:
parent
d5c7c97b54
commit
7ec91682f9
@ -1,20 +1,24 @@
|
||||
diff -up hplip-3.10.9/ui4/setupdialog.py.emit-SIGNAL hplip-3.10.9/ui4/setupdialog.py
|
||||
--- hplip-3.10.9/ui4/setupdialog.py.emit-SIGNAL 2010-11-10 18:42:13.000000000 +0100
|
||||
+++ hplip-3.10.9/ui4/setupdialog.py 2010-11-11 11:59:47.000000000 +0100
|
||||
@@ -868,7 +868,7 @@ class SetupDialog(QDialog, Ui_Dialog):
|
||||
--- hplip-3.10.9/ui4/setupdialog.py.emit-SIGNAL 2010-12-14 15:51:43.579041162 +0000
|
||||
+++ hplip-3.10.9/ui4/setupdialog.py 2010-12-14 15:52:02.631111875 +0000
|
||||
@@ -867,8 +867,8 @@ class SetupDialog(QDialog, Ui_Dialog):
|
||||
self.printer_fax_names_same = False
|
||||
self.printer_name_ok = True
|
||||
|
||||
self.FaxNameLineEdit.emit(SIGNAL("textChanged(const QString &)"),
|
||||
- self.FaxNameLineEdit.emit(SIGNAL("textChanged(const QString &)"),
|
||||
- (self.FaxNameLineEdit.text(),))
|
||||
+ self.FaxNameLineEdit.emit(SIGNAL("textEdited(const QString &)"),
|
||||
+ self.FaxNameLineEdit.text())
|
||||
|
||||
self.setIndicators()
|
||||
self.setAddPrinterButton()
|
||||
@@ -900,7 +900,7 @@ class SetupDialog(QDialog, Ui_Dialog):
|
||||
@@ -899,8 +899,8 @@ class SetupDialog(QDialog, Ui_Dialog):
|
||||
self.printer_fax_names_same = False
|
||||
self.fax_name_ok = True
|
||||
|
||||
self.PrinterNameLineEdit.emit(SIGNAL("textChanged(const QString&)"),
|
||||
- self.PrinterNameLineEdit.emit(SIGNAL("textChanged(const QString&)"),
|
||||
- (self.PrinterNameLineEdit.text(),))
|
||||
+ self.PrinterNameLineEdit.emit(SIGNAL("textEdited(const QString &)"),
|
||||
+ self.PrinterNameLineEdit.text())
|
||||
|
||||
self.setIndicators()
|
||||
|
@ -511,6 +511,7 @@ fi
|
||||
|
||||
%changelog
|
||||
* Tue Dec 14 2010 Tim Waugh <twaugh@redhat.com> - 3.10.9-9
|
||||
- Fixed incorrect signal name in setup dialog (bug #653626).
|
||||
- Another missing newline in filter output (Ubuntu #418053).
|
||||
- Prevent hpaio segfaulting on invalid URIs (bug #649092).
|
||||
- Catch D-Bus exceptions in fax dialog (bug #645316).
|
||||
|
Loading…
Reference in New Issue
Block a user