Mercurial > hg > easyhg
comparison easyhg.py @ 264:3b8501070c21
* Fix typo. Uh
author | Chris Cannam |
---|---|
date | Wed, 12 Jan 2011 16:14:43 +0000 |
parents | a574b89bfddd |
children | ea6f76c0aa76 |
comparison
equal
deleted
inserted
replaced
263:25efd198e3d4 | 264:3b8501070c21 |
---|---|
56 if msg == _('user:'): | 56 if msg == _('user:'): |
57 msg = _('User:') | 57 msg = _('User:') |
58 d = QtGui.QInputDialog() | 58 d = QtGui.QInputDialog() |
59 d.setInputMode(QtGui.QInputDialog.TextInput) | 59 d.setInputMode(QtGui.QInputDialog.TextInput) |
60 d.setTextEchoMode(QtGui.QLineEdit.Normal) | 60 d.setTextEchoMode(QtGui.QLineEdit.Normal) |
61 d.setLabelText(prompt) | 61 d.setLabelText(msg) |
62 d.setWindowTitle(_('EasyMercurial: Information')) | 62 d.setWindowTitle(_('EasyMercurial: Information')) |
63 d.show() | 63 d.show() |
64 d.raise_() | 64 d.raise_() |
65 ok = d.exec_() | 65 ok = d.exec_() |
66 r = d.textValue() | 66 r = d.textValue() |