Title: [93611] trunk/Source/WebKit/efl
Revision
93611
Author
[email protected]
Date
2011-08-23 10:08:21 -0700 (Tue, 23 Aug 2011)

Log Message

Unreviewed build fix after r66685.

* WebCoreSupport/FrameLoaderClientEfl.cpp:
(WebCore::FrameLoaderClientEfl::dispatchDidClearWindowObjectInWorld):
Assert using the right variable name.

Modified Paths

Diff

Modified: trunk/Source/WebKit/efl/ChangeLog (93610 => 93611)


--- trunk/Source/WebKit/efl/ChangeLog	2011-08-23 16:31:32 UTC (rev 93610)
+++ trunk/Source/WebKit/efl/ChangeLog	2011-08-23 17:08:21 UTC (rev 93611)
@@ -1,3 +1,11 @@
+2011-08-23  Leandro Pereira  <[email protected]>
+
+        Unreviewed build fix after r66685.
+
+        * WebCoreSupport/FrameLoaderClientEfl.cpp:
+        (WebCore::FrameLoaderClientEfl::dispatchDidClearWindowObjectInWorld):
+        Assert using the right variable name.
+
 2011-08-23  Raphael Kubo da Costa  <[email protected]>
 
         [EFL] Treat the case of WebCore::History->currentItem() returning NULL.

Modified: trunk/Source/WebKit/efl/WebCoreSupport/FrameLoaderClientEfl.cpp (93610 => 93611)


--- trunk/Source/WebKit/efl/WebCoreSupport/FrameLoaderClientEfl.cpp	2011-08-23 16:31:32 UTC (rev 93610)
+++ trunk/Source/WebKit/efl/WebCoreSupport/FrameLoaderClientEfl.cpp	2011-08-23 17:08:21 UTC (rev 93611)
@@ -428,7 +428,7 @@
         return;
 
     Frame* coreFrame = ewk_frame_core_get(m_frame);
-    ASSERT(f);
+    ASSERT(coreFrame);
 
     Settings* settings = coreFrame->settings();
     if (!settings || !settings->isJavaScriptEnabled())
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to