Title: [121029] trunk/Source/WebKit/blackberry
- Revision
- 121029
- Author
- [email protected]
- Date
- 2012-06-22 09:23:48 -0700 (Fri, 22 Jun 2012)
Log Message
[Blackberry] BlackBerry::Platform::Settings::get() rename to BlackBerry::Platform::Settings::instance() to make it consistent with our other singletons
https://bugs.webkit.org/show_bug.cgi?id=89684
Patch by Parth Patel <[email protected]> on 2012-06-22
Reviewed by Yong Li.
Build Fix-Typo Update setting instance access to use instance() instead of get().
* WebKitSupport/InputHandler.cpp:
(BlackBerry::WebKit::InputHandler::isInputModeEnabled):
Modified Paths
Diff
Modified: trunk/Source/WebKit/blackberry/ChangeLog (121028 => 121029)
--- trunk/Source/WebKit/blackberry/ChangeLog 2012-06-22 16:20:33 UTC (rev 121028)
+++ trunk/Source/WebKit/blackberry/ChangeLog 2012-06-22 16:23:48 UTC (rev 121029)
@@ -1,3 +1,15 @@
+2012-06-22 Parth Patel <[email protected]>
+
+ [Blackberry] BlackBerry::Platform::Settings::get() rename to BlackBerry::Platform::Settings::instance() to make it consistent with our other singletons
+ https://bugs.webkit.org/show_bug.cgi?id=89684
+
+ Reviewed by Yong Li.
+
+ Build Fix-Typo Update setting instance access to use instance() instead of get().
+
+ * WebKitSupport/InputHandler.cpp:
+ (BlackBerry::WebKit::InputHandler::isInputModeEnabled):
+
2012-06-22 Amy Ousterhout <[email protected]>
Renamed DeviceOrientation to DeviceOrientationData
Modified: trunk/Source/WebKit/blackberry/WebKitSupport/InputHandler.cpp (121028 => 121029)
--- trunk/Source/WebKit/blackberry/WebKitSupport/InputHandler.cpp 2012-06-22 16:20:33 UTC (rev 121028)
+++ trunk/Source/WebKit/blackberry/WebKitSupport/InputHandler.cpp 2012-06-22 16:23:48 UTC (rev 121029)
@@ -435,7 +435,7 @@
bool InputHandler::isInputModeEnabled() const
{
// Input mode is enabled when set, or when dump render tree or always show keyboard setting is enabled.
- return m_inputModeEnabled || m_webPage->m_dumpRenderTree || Platform::Settings::intsance()->alwaysShowKeyboardOnFocus();
+ return m_inputModeEnabled || m_webPage->m_dumpRenderTree || Platform::Settings::instance()->alwaysShowKeyboardOnFocus();
}
void InputHandler::setInputModeEnabled(bool active)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes