From f4390b768d1008dee17fa5b366f1aa7e06e95e84 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 9 Jul 2012 13:32:27 +0530 Subject: [PATCH] ... --- setup/installer/windows/notes.rst | 2 +- src/calibre/gui2/complete2.py | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/setup/installer/windows/notes.rst b/setup/installer/windows/notes.rst index 7ff1593988..91d658cfe2 100644 --- a/setup/installer/windows/notes.rst +++ b/setup/installer/windows/notes.rst @@ -146,7 +146,7 @@ Run bash ./runConfigureICU Cygwin/MSVC Run make (note that you must have GNU make installed in cygwin) -Optionally run make test +Optionally run make check Libunrar ---------- diff --git a/src/calibre/gui2/complete2.py b/src/calibre/gui2/complete2.py index 73ddb597a8..0c75974091 100644 --- a/src/calibre/gui2/complete2.py +++ b/src/calibre/gui2/complete2.py @@ -373,6 +373,10 @@ class EditWithComplete(EnComboBox): def setCursorPosition(self, *args): self.lineEdit().setCursorPosition(*args) + @property + def textChanged(self): + return self.lineEdit().textChanged + if __name__ == '__main__': from PyQt4.Qt import QDialog, QVBoxLayout app = QApplication([])