Changeset 54064 in webkit
- Timestamp:
- Jan 29, 2010 8:25:18 AM (10 years ago)
- Location:
- trunk/WebKit/qt
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
WebCoreSupport/EditorClientQt.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebKit/qt/ChangeLog
r54034 r54064 1 2010-01-29 Kenneth Rohde Christiansen <kenneth@webkit.org> 2 3 Reviewed by Simon Hausmann 4 5 Disable auto-uppercase and predictive text on Maemo5, just like the 6 build-in MicroB Browser. 7 8 * WebCoreSupport/EditorClientQt.cpp: 9 (WebCore::EditorClientQt::setInputMethodState): 10 1 11 2010-01-28 Andreas Kling <andreas.kling@nokia.com> 2 12 -
trunk/WebKit/qt/WebCoreSupport/EditorClientQt.cpp
r50563 r54064 626 626 } 627 627 webPageClient->setInputMethodHint(Qt::ImhHiddenText, isPasswordField); 628 #endif 628 #ifdef Q_WS_MAEMO_5 629 // Maemo 5 MicroB Browser disables auto-uppercase and predictive text, thus, so do we. 630 webPageClient->setInputMethodHint(Qt::ImhNoAutoUppercase, true); 631 webPageClient->setInputMethodHint(Qt::ImhNoPredictiveText, true); 632 #endif // Q_WS_MAEMO_5 633 #endif // QT_VERSION check 629 634 webPageClient->setInputMethodEnabled(active); 630 635 }
Note: See TracChangeset
for help on using the changeset viewer.