Title: [124159] trunk/Source/WebCore
Revision
124159
Author
[email protected]
Date
2012-07-30 19:57:28 -0700 (Mon, 30 Jul 2012)

Log Message

Another Qt build fix attempt after r124098.
"interface" is a keyword. Don't use it. 

* dom/GestureEvent.cpp:
(WebCore::GestureEvent::interfaceName):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (124158 => 124159)


--- trunk/Source/WebCore/ChangeLog	2012-07-31 02:56:50 UTC (rev 124158)
+++ trunk/Source/WebCore/ChangeLog	2012-07-31 02:57:28 UTC (rev 124159)
@@ -1,3 +1,11 @@
+2012-07-30  Ryosuke Niwa  <[email protected]>
+
+        Another Qt build fix attempt after r124098.
+        "interface" is a keyword. Don't use it. 
+
+        * dom/GestureEvent.cpp:
+        (WebCore::GestureEvent::interfaceName):
+
 2012-07-30  Elliott Sprehn  <[email protected]>
 
         Make QuotesData use a Vector of pairs

Modified: trunk/Source/WebCore/dom/GestureEvent.cpp (124158 => 124159)


--- trunk/Source/WebCore/dom/GestureEvent.cpp	2012-07-31 02:56:50 UTC (rev 124158)
+++ trunk/Source/WebCore/dom/GestureEvent.cpp	2012-07-31 02:57:28 UTC (rev 124159)
@@ -84,8 +84,8 @@
 
 const AtomicString& GestureEvent::interfaceName() const
 {
-    DEFINE_STATIC_LOCAL(AtomicString, interface, ("TBDInterface"));
-    return interface;
+    DEFINE_STATIC_LOCAL(AtomicString, name, ("TBDInterface"));
+    return name;
 }
 
 GestureEvent::GestureEvent()
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to