This commit is contained in:
Kovid Goyal 2012-07-09 13:32:27 +05:30
parent f7974adef5
commit f4390b768d
2 changed files with 5 additions and 1 deletions

View File

@ -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
----------

View File

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