summaryrefslogtreecommitdiffstats
path: root/src/widgets/widgets/qlineedit.cpp
diff options
context:
space:
mode:
authorPekka Vuorela <pekka.ta.vuorela@nokia.com>2011-09-23 12:13:39 +0300
committerQt by Nokia <qt-info@nokia.com>2011-09-28 03:18:03 +0200
commit3b6bb13e6a197bb4ba85b397ae9d2b8c659d6b26 (patch)
treeb363444987dce3d2f74af1d3fc765366e04c954b /src/widgets/widgets/qlineedit.cpp
parent36850d5cecd37d00d296428739a9e01f00228421 (diff)
Removed obsolete QWidget::resetInputContext()
Replaced functionality with new QInputPanel interface. Change-Id: I5543f725724b2b208dcf18366712a18b665439b2 Reviewed-on: http://codereview.qt-project.org/5630 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Joona Petrell <joona.t.petrell@nokia.com> Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
Diffstat (limited to 'src/widgets/widgets/qlineedit.cpp')
-rw-r--r--src/widgets/widgets/qlineedit.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/widgets/widgets/qlineedit.cpp b/src/widgets/widgets/qlineedit.cpp
index aca15f30ed..30f90cd5db 100644
--- a/src/widgets/widgets/qlineedit.cpp
+++ b/src/widgets/widgets/qlineedit.cpp
@@ -1342,7 +1342,7 @@ void QLineEdit::insert(const QString &newText)
void QLineEdit::clear()
{
Q_D(QLineEdit);
- resetInputContext();
+ d->resetInputPanel();
d->control->clear();
}
@@ -1355,7 +1355,7 @@ void QLineEdit::clear()
void QLineEdit::undo()
{
Q_D(QLineEdit);
- resetInputContext();
+ d->resetInputPanel();
d->control->undo();
}
@@ -1366,7 +1366,7 @@ void QLineEdit::undo()
void QLineEdit::redo()
{
Q_D(QLineEdit);
- resetInputContext();
+ d->resetInputPanel();
d->control->redo();
}