summaryrefslogtreecommitdiffstats
path: root/src/gui/text
diff options
context:
space:
mode:
authoraxis <qt-info@nokia.com>2009-05-29 12:42:35 (GMT)
committeraxis <qt-info@nokia.com>2009-06-03 09:23:15 (GMT)
commit6545932efa45ea2b8fbc1459d760ec5f15c63120 (patch)
treeb82c0a567ac39a522d25d29e61956103c021ec91 /src/gui/text
parenta014c0746cf9d4dfb8ba8c0e67060d577c09dd3c (diff)
downloadQt-6545932efa45ea2b8fbc1459d760ec5f15c63120.zip
Qt-6545932efa45ea2b8fbc1459d760ec5f15c63120.tar.gz
Qt-6545932efa45ea2b8fbc1459d760ec5f15c63120.tar.bz2
Revert "Changed the behavior of ImCursorPosition slightly."
This reverts commit ce02d0e9e0ad8d8ac47e4f3ee95bac5cb74ed184. This turned out not to be enough for proper selection support together with S60 FEP. Instead we will revert the behavior and add new API.
Diffstat (limited to 'src/gui/text')
-rw-r--r--src/gui/text/qtextcontrol.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/text/qtextcontrol.cpp b/src/gui/text/qtextcontrol.cpp
index c74af23..f6092bb 100644
--- a/src/gui/text/qtextcontrol.cpp
+++ b/src/gui/text/qtextcontrol.cpp
@@ -1865,7 +1865,7 @@ QVariant QTextControl::inputMethodQuery(Qt::InputMethodQuery property) const
case Qt::ImFont:
return QVariant(d->cursor.charFormat().font());
case Qt::ImCursorPosition:
- return QVariant(d->cursor.selectionEnd() - block.position());
+ return QVariant(d->cursor.position() - block.position());
case Qt::ImSurroundingText:
return QVariant(block.text());
case Qt::ImCurrentSelection: