Title: [195768] trunk/Tools
Revision
195768
Author
[email protected]
Date
2016-01-28 11:34:36 -0800 (Thu, 28 Jan 2016)

Log Message

Unreviewed buildfix after r195743.

* WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp:
(WTR::AccessibilityUIElement::isPressActionSupported):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (195767 => 195768)


--- trunk/Tools/ChangeLog	2016-01-28 19:30:55 UTC (rev 195767)
+++ trunk/Tools/ChangeLog	2016-01-28 19:34:36 UTC (rev 195768)
@@ -1,3 +1,10 @@
+2016-01-28  Csaba Osztrogonác  <[email protected]>
+
+        Unreviewed buildfix after r195743.
+
+        * WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp:
+        (WTR::AccessibilityUIElement::isPressActionSupported):
+
 2016-01-12  Jer Noble  <[email protected]>
 
         Custom protocol loading through AVFoundation does not support byte-range requests.

Modified: trunk/Tools/WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp (195767 => 195768)


--- trunk/Tools/WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp	2016-01-28 19:30:55 UTC (rev 195767)
+++ trunk/Tools/WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp	2016-01-28 19:34:36 UTC (rev 195768)
@@ -1350,7 +1350,7 @@
         return false;
 
     const gchar* actionName = atk_action_get_name(ATK_ACTION(m_element.get()), 0);
-    return equalLettersIgnoringASCIICase(actionName, "press") || equalLettersIgnoringASCIICase(actionName, "jump");
+    return equalLettersIgnoringASCIICase(String(actionName), "press") || equalLettersIgnoringASCIICase(String(actionName), "jump");
 }
 
 bool AccessibilityUIElement::isIncrementActionSupported()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to