Title: [122268] trunk/Source/WebCore
Revision
122268
Author
[email protected]
Date
2012-07-10 15:08:14 -0700 (Tue, 10 Jul 2012)

Log Message

Build fix. Removing unused variable from http://trac.webkit.org/changeset/122264.
* rendering/RenderBox.cpp:
(WebCore::RenderBox::computeContentLogicalHeightUsing):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (122267 => 122268)


--- trunk/Source/WebCore/ChangeLog	2012-07-10 22:03:01 UTC (rev 122267)
+++ trunk/Source/WebCore/ChangeLog	2012-07-10 22:08:14 UTC (rev 122268)
@@ -1,3 +1,9 @@
+2012-07-10  Ojan Vafai  <[email protected]>
+
+        Build fix. Removing unused variable from http://trac.webkit.org/changeset/122264.
+        * rendering/RenderBox.cpp:
+        (WebCore::RenderBox::computeContentLogicalHeightUsing):
+
 2012-07-10  Ryosuke Niwa  <[email protected]>
 
         HTMLPropertiesCollection should share more code with HTMLCollection

Modified: trunk/Source/WebCore/rendering/RenderBox.cpp (122267 => 122268)


--- trunk/Source/WebCore/rendering/RenderBox.cpp	2012-07-10 22:03:01 UTC (rev 122267)
+++ trunk/Source/WebCore/rendering/RenderBox.cpp	2012-07-10 22:08:14 UTC (rev 122268)
@@ -2081,7 +2081,6 @@
     if (height.isAuto())
         return heightType == MinSize ? 0 : -1;
  
-    LayoutUnit logicalHeight = -1;
     if (height.isFixed())
         return height.value();
     if (height.isPercent())
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to