Title: [98410] trunk/Source/WebCore
Revision
98410
Author
aba...@webkit.org
Date
2011-10-25 16:39:28 -0700 (Tue, 25 Oct 2011)

Log Message

Attempt to fix the Windows build.  Windows mashes all these files into
one, which doesn't respect the compilation unit rules of C++.

* bindings/js/JSEventCustom.cpp:
* bindings/js/JSEventTarget.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (98409 => 98410)


--- trunk/Source/WebCore/ChangeLog	2011-10-25 23:19:00 UTC (rev 98409)
+++ trunk/Source/WebCore/ChangeLog	2011-10-25 23:39:28 UTC (rev 98410)
@@ -1,3 +1,11 @@
+2011-10-25  Adam Barth  <aba...@webkit.org>
+
+        Attempt to fix the Windows build.  Windows mashes all these files into
+        one, which doesn't respect the compilation unit rules of C++.
+
+        * bindings/js/JSEventCustom.cpp:
+        * bindings/js/JSEventTarget.cpp:
+
 2011-10-25  Ryosuke Niwa  <rn...@webkit.org>
 
         Moving to the start of line should not place the caret outside of the table

Modified: trunk/Source/WebCore/bindings/js/JSEventCustom.cpp (98409 => 98410)


--- trunk/Source/WebCore/bindings/js/JSEventCustom.cpp	2011-10-25 23:19:00 UTC (rev 98409)
+++ trunk/Source/WebCore/bindings/js/JSEventCustom.cpp	2011-10-25 23:39:28 UTC (rev 98410)
@@ -69,4 +69,6 @@
     return CREATE_DOM_WRAPPER(exec, globalObject, Event, event);
 }
 
+#undef TRY_TO_WRAP_WITH_INTERFACE
+
 } // namespace WebCore

Modified: trunk/Source/WebCore/bindings/js/JSEventTarget.cpp (98409 => 98410)


--- trunk/Source/WebCore/bindings/js/JSEventTarget.cpp	2011-10-25 23:19:00 UTC (rev 98409)
+++ trunk/Source/WebCore/bindings/js/JSEventTarget.cpp	2011-10-25 23:39:28 UTC (rev 98410)
@@ -134,6 +134,8 @@
     return jsNull();
 }
 
+#undef TRY_TO_WRAP_WITH_INTERFACE
+
 EventTarget* toEventTarget(JSC::JSValue value)
 {
     #define CONVERT_TO_EVENT_TARGET(type) \
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to