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([])