summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qkeymapper_mac.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@nokia.com>2010-06-09 22:05:07 (GMT)
committerLars Knoll <lars.knoll@nokia.com>2010-06-09 22:08:34 (GMT)
commit1abf2d6dfafc71f73746b7e69e11e0c8152edb4a (patch)
treee6aa5b8a0654c53efd8f9ca87b91a7cd508fdf41 /src/gui/kernel/qkeymapper_mac.cpp
parentda603c7c80ea14df18790ae77f5de82880307650 (diff)
downloadQt-1abf2d6dfafc71f73746b7e69e11e0c8152edb4a.zip
Qt-1abf2d6dfafc71f73746b7e69e11e0c8152edb4a.tar.gz
Qt-1abf2d6dfafc71f73746b7e69e11e0c8152edb4a.tar.bz2
Rename QLocale::isWrittenRightToLeft() to textDirection()
This is more in line with the rest of Qt. Reviewed-by: Simon Hausmann
Diffstat (limited to 'src/gui/kernel/qkeymapper_mac.cpp')
-rw-r--r--src/gui/kernel/qkeymapper_mac.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/kernel/qkeymapper_mac.cpp b/src/gui/kernel/qkeymapper_mac.cpp
index 885f5ba..873b8f9 100644
--- a/src/gui/kernel/qkeymapper_mac.cpp
+++ b/src/gui/kernel/qkeymapper_mac.cpp
@@ -672,7 +672,7 @@ QKeyMapperPrivate::updateKeyboard()
#endif
if (iso639Code) {
keyboardInputLocale = QLocale(QCFString::toQString(iso639Code));
- keyboardInputDirection = keyboardInputLocale.isWrittenRightToLeft() ? Qt::RightToLeft : Qt::LeftToRight;
+ keyboardInputDirection = keyboardInputLocale.textDirection();
} else {
keyboardInputLocale = QLocale::c();
keyboardInputDirection = Qt::LeftToRight;