Changeset 56458 in webkit


Ignore:
Timestamp:
Mar 24, 2010 2:12:51 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-03-24 Viatcheslav Ostapenko <ostapenko.viatcheslav@nokia.com>

Reviewed by Laszlo Gombos.

Auto-uppercase and predictive text need to be disabled for S60 (as for maemo)
https://bugs.webkit.org/show_bug.cgi?id=33176

  • WebCoreSupport/EditorClientQt.cpp:
Location:
trunk/WebKit/qt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/qt/ChangeLog

    r56456 r56458  
     12010-03-24  Viatcheslav Ostapenko  <ostapenko.viatcheslav@nokia.com>
     2
     3        Reviewed by Laszlo Gombos.
     4
     5        Auto-uppercase and predictive text need to be disabled for S60 (as for maemo)
     6        https://bugs.webkit.org/show_bug.cgi?id=33176
     7
     8        * WebCoreSupport/EditorClientQt.cpp:
     9
    1102010-03-24  Kent Hansen  <kent.hansen@nokia.com>
    211
  • trunk/WebKit/qt/WebCoreSupport/EditorClientQt.cpp

    r56386 r56458  
    614614        }
    615615        webPageClient->setInputMethodHint(Qt::ImhHiddenText, isPasswordField);
    616 #ifdef Q_WS_MAEMO_5
    617         // Maemo 5 MicroB Browser disables auto-uppercase and predictive text, thus, so do we.
     616#if defined(Q_WS_MAEMO_5) || defined(Q_OS_SYMBIAN)
     617        // disables auto-uppercase and predictive text for mobile devices
    618618        webPageClient->setInputMethodHint(Qt::ImhNoAutoUppercase, true);
    619619        webPageClient->setInputMethodHint(Qt::ImhNoPredictiveText, true);
    620 #endif // Q_WS_MAEMO_5
     620#endif // Q_WS_MAEMO_5 || Q_OS_SYMBIAN
    621621#endif // QT_VERSION check
    622622        webPageClient->setInputMethodEnabled(active);
Note: See TracChangeset for help on using the changeset viewer.