Title: [150641] trunk/Source/WebKit/blackberry
Revision
150641
Author
[email protected]
Date
2013-05-24 08:51:18 -0700 (Fri, 24 May 2013)

Log Message

[BlackBerry] Fix bad type warning in InputHandler log.
https://bugs.webkit.org/show_bug.cgi?id=116720

Reviewed by Carlos Garcia Campos.

Fix warning in inputLog string.

* WebKitSupport/InputHandler.cpp:
(BlackBerry::WebKit::InputHandler::handleKeyboardInput):

Modified Paths

Diff

Modified: trunk/Source/WebKit/blackberry/ChangeLog (150640 => 150641)


--- trunk/Source/WebKit/blackberry/ChangeLog	2013-05-24 14:48:21 UTC (rev 150640)
+++ trunk/Source/WebKit/blackberry/ChangeLog	2013-05-24 15:51:18 UTC (rev 150641)
@@ -1,5 +1,17 @@
 2013-05-24  Mike Fenton  <[email protected]>
 
+        [BlackBerry] Fix bad type warning in InputHandler log.
+        https://bugs.webkit.org/show_bug.cgi?id=116720
+
+        Reviewed by Carlos Garcia Campos.
+
+        Fix warning in inputLog string.
+
+        * WebKitSupport/InputHandler.cpp:
+        (BlackBerry::WebKit::InputHandler::handleKeyboardInput):
+
+2013-05-24  Mike Fenton  <[email protected]>
+
         [BlackBerry] Respect tabindex when using form controls.
         https://bugs.webkit.org/show_bug.cgi?id=116676
 

Modified: trunk/Source/WebKit/blackberry/WebKitSupport/InputHandler.cpp (150640 => 150641)


--- trunk/Source/WebKit/blackberry/WebKitSupport/InputHandler.cpp	2013-05-24 14:48:21 UTC (rev 150640)
+++ trunk/Source/WebKit/blackberry/WebKitSupport/InputHandler.cpp	2013-05-24 15:51:18 UTC (rev 150641)
@@ -1798,7 +1798,7 @@
 bool InputHandler::handleKeyboardInput(const Platform::KeyboardEvent& keyboardEvent, bool changeIsPartOfComposition)
 {
     InputLog(Platform::LogLevelInfo,
-        "InputHandler::handleKeyboardInput received character='%lc', type=%d",
+        "InputHandler::handleKeyboardInput received character='%c', type=%d",
         keyboardEvent.character(), keyboardEvent.type());
 
     // Clearing the m_shouldNotifyWebView state on any KeyboardEvent.
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to