diff options
author | Thierry Bastian <thierry.bastian@nokia.com> | 2010-08-18 12:15:14 (GMT) |
---|---|---|
committer | Thierry Bastian <thierry.bastian@nokia.com> | 2010-08-18 12:15:14 (GMT) |
commit | 5cea290a567a0270d3d00e2b475b923bd5462691 (patch) | |
tree | faddae24db2355b6ecf6093de34e08cfd920c307 /src/gui/widgets/qlineedit.h | |
parent | a202c88f4cad77034d4b03d3221567ccf35c03a8 (diff) | |
download | Qt-5cea290a567a0270d3d00e2b475b923bd5462691.zip Qt-5cea290a567a0270d3d00e2b475b923bd5462691.tar.gz Qt-5cea290a567a0270d3d00e2b475b923bd5462691.tar.bz2 |
Fixed partial update on QLineEdit
QLineControl passes a QRect to tell when a partial update is needed.
We used to connect this slot to update. This made the whole lineedit
update when the cursor blinked.
Task-number: QTBUG-12709
Reviewed-by: gabi
Diffstat (limited to 'src/gui/widgets/qlineedit.h')
-rw-r--r-- | src/gui/widgets/qlineedit.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/widgets/qlineedit.h b/src/gui/widgets/qlineedit.h index 94e0dbe..667562b 100644 --- a/src/gui/widgets/qlineedit.h +++ b/src/gui/widgets/qlineedit.h @@ -283,6 +283,7 @@ private: Q_PRIVATE_SLOT(d_func(), void _q_editFocusChange(bool)) #endif Q_PRIVATE_SLOT(d_func(), void _q_selectionChanged()) + Q_PRIVATE_SLOT(d_func(), void _q_updateNeeded(const QRect &)) }; #endif // QT_NO_LINEEDIT |